1. remove #
error: expected ‘=’,
‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘<’
token
include<stdio.h>
2. remove include
invalid
preprocessing directive #<
#<stdio.h>
3. remove <
invalid
preprocessing directive #includestdio; did you mean #include?
4. remove >
missing terminating
> character
#include<stdio.h
5. removing stdio.h
empty filename in
#include
#include<>
6. removing <>
#include expects
"FILENAME" or <FILENAME>
#include stdio.h
7. removing .h
fatal error: stdio:
No such file or directory
#include<stdio>
8. removing (
expected ‘=’,
‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘)’
token
int main)
9. removing )
expected
declaration specifiers or ‘...’ before ‘{’ token
{
10. removing main
expected identifier
or ‘(’ before ‘)’ token
int ()
11. removing {
expected declaration
specifiers before ‘printf’
printf("hello
word\n");
expected declaration
specifiers before ‘return’
return 0;
expected declaration
specifiers before ‘}’ token
}
expected ‘{’ at
end of input
12. removing f from
printf
implicit declaration
of function ‘print’; did you mean ‘printf’?
[-Wimplicit-function-declaration]
hello.c:(.text+0xf):
undefined reference to `print'
13. removing “
missing terminating
" character
printf(hello
word\n");
14. removing “”
expected ‘)’
before ‘word’
stray ‘\’ in
program
15. removing ;
expected ‘;’
before ‘return’
16. removing “ &
) both simalteniously
missing terminating
" character
printf("hello
word\n;
^~~~~~~~~~~~~~
expected expression
before ‘return’
return 0;
expected ‘;’
before ‘}’ token
17. removing space
in b/w return & 0
‘return0’
undeclared (first use in this function)
return0;
18. removing ) from
printf
expected ‘)’
before ‘;’ token
printf("hello
word\n";
19. removing r from
return
‘retun’
undeclared (first use in this function); did you mean ‘rewind’?
retun 0;
20. placing :
inested of ;
expected ‘;’
before ‘:’ token
printf("hello
word\n"):
It looks like you're new here. If you want to get involved, click one of these buttons!