prog.c:2:1: warning: return type defaults to 'int' [-Wimplicit-int]
aaa() { printf(“Hi”); }
^
prog.c: In function 'aaa':
prog.c:2:1: error: stray '\342' in program
prog.c:2:1: error: stray '\200' in program
prog.c:2:1: error: stray '\234' in program
prog.c:2:1: error: stray '\342' in program
prog.c:2:1: error: stray '\200' in program
prog.c:2:1: error: stray '\235' in program
prog.c:2:19: error: 'Hi' undeclared (first use in this function)
aaa() { printf(“Hi”); }
^
prog.c:2:19: note: each undeclared identifier is reported only once for each function it appears in
prog.c: At top level:
prog.c:3:1: warning: return type defaults to 'int' [-Wimplicit-int]
bbb() { printf(“Hello”); }
^
prog.c: In function 'bbb':
prog.c:3:1: error: stray '\342' in program
prog.c:3:1: error: stray '\200' in program
prog.c:3:1: error: stray '\234' in program
prog.c:3:1: error: stray '\342' in program
prog.c:3:1: error: stray '\200' in program
prog.c:3:1: error: stray '\235' in program
prog.c:3:19: error: 'Hello' undeclared (first use in this function)
bbb() { printf(“Hello”); }
^
prog.c: At top level:
prog.c:4:1: warning: return type defaults to 'int' [-Wimplicit-int]
ccc() { printf(“VIT”); }
^
prog.c: In function 'ccc':
prog.c:4:1: error: stray '\342' in program
prog.c:4:1: error: stray '\200' in program
prog.c:4:1: error: stray '\234' in program
prog.c:4:1: error: stray '\342' in program
prog.c:4:1: error: stray '\200' in program
prog.c:4:1: error: stray '\235' in program
prog.c:4:19: error: 'VIT' undeclared (first use in this function)
ccc() { printf(“VIT”); }
^
prog.c: At top level:
prog.c:5:1: warning: return type defaults to 'int' [-Wimplicit-int]
main()
^
prog.c: In function 'main':
prog.c:11:1: error: invalid type argument of unary '*' (have 'int')
*p[1]();
^
prog.c: In function 'aaa':
prog.c:2:1: warning: control reaches end of non-void function [-Wreturn-type]
aaa() { printf(“Hi”); }
^
prog.c: In function 'bbb':
prog.c:3:1: warning: control reaches end of non-void function [-Wreturn-type]
bbb() { printf(“Hello”); }
^
prog.c: In function 'ccc':
prog.c:4:1: warning: control reaches end of non-void function [-Wreturn-type]
ccc() { printf(“VIT”); }
^