Hi! why does this error appear? include <stdio.h> main() { printf("aaa"); } I compile and this message appears:
(line 1) expected construscor, distructor or type conversion before '<' token (line 1) expected ,' or;' before '<' token
,' or
please help me!!! :) thx
include is a preprocessor directive which must be preceeded by #:
Log in to post a comment.
Hi!
why does this error appear?
include <stdio.h>
main()
{
printf("aaa");
}
I compile and this message appears:
(line 1) expected construscor, distructor or type conversion before '<' token
(line 1) expected
,' or
;' before '<' tokenplease help me!!! :)
thx
include is a preprocessor directive which must be preceeded by #:
include ...