c
int a; a=10; for(i=0;i<10;i++) printf "koru";
source_file.c:1:8: warning: data definition has no type or storage class
int a; a=10; for(i=0;i<10;i++) printf "koru";
^
source_file.c:1:8: warning: type defaults to ‘int’ in declaration of ‘a’ [-Wimplicit-int]
source_file.c:1:14: error: expected identifier or ‘(’ before ‘for’
int a; a=10; for(i=0;i<10;i++) printf "koru";
^
source_file.c:1:23: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
int a; a=10; for(i=0;i<10;i++) printf "koru";
^
source_file.c:1:28: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘++’ token
int a; a=10; for(i=0;i<10;i++) printf "koru";
^c
int i; for(i=1;i<10;i++) {printf "koru";}source_file.c:1:8: error: expected identifier or ‘(’ before ‘for’
int i; for(i=1;i<10;i++) {printf "koru";}
^
source_file.c:1:17: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’ token
int i; for(i=1;i<10;i++) {printf "koru";}
^
source_file.c:1:22: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘++’ token
int i; for(i=1;i<10;i++) {printf "koru";}
^c
#include<stdio.h>
int main(){
printf("ouo\n");
return 0;
}ouo
c
#include<stdio.h>
int main(){
int i;
for(i=0;i<10;i++) {
printf("o2o\n");
}
return 0;
}o2o o2o o2o o2o o2o o2o o2o o2o o2o o2o