Following line is written in the C program
in/*hello*/t k; error or not
According to me,first preprocessor would remove the comments from the code and then code will go to compiler so the code that would go to compiler is
int k;
which is perfectly ok.
but actually when I am running this on gcc compiler it's giving compiler error as
in
,k
,t
is not defined