1 Bug in
#include<stdio.h>
error: expected ‘=’,
‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’
token
include<stdio.h>
missing #
2 Bug in
#include<stdio.h>
hello.c:1:9: fatal
error: stdio.: No such file or directory
#include<stdio.>
^~~~~~~~
missing h
3 Bug in int main ()
hello.c:3:1: error:
expected declaration specifiers or ‘...’ before ‘{’ token
{
missing )
4 Bug in
printf(“hello world\n”);
hello.c:6:9: error:
expected ‘;’ before ‘return’
return 0;
^~~~~~
missing (“hello
world\n”);
5 bug
in printf("hello world\n");
hello.c:5:8: error: expected ‘;’ before ‘return’
return 0;
^~~~~~
missing ;
It looks like you're new here. If you want to get involved, click one of these buttons!