edited by
774 views
0 votes
0 votes

What is the type of error (earliest phase) identified during the compilation of the following program ?
 

#include <stdio.h>
main( )
{
   int x, y, z;
   x = y = z = 10.3;
   printf(“%c”, x);
}
edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
3 answers
1
VJ2793 asked Feb 12, 2019
641 views
fro(int I=0; I <5;I++);what kind of compilation error is this ?
1 votes
1 votes
1 answer
2
10 votes
10 votes
2 answers
3
shubhams3 asked Mar 22, 2016
1,020 views
a = 1+1+1+ 1+1+1 1+1;as far as i think, it will pass the lexical phase.. it should b syntax error.. correct ??
0 votes
0 votes
1 answer
4
sourabh asked Jan 1, 2016
546 views
What type of error in programmain(){int gate,exam;gate=exam=10.3;printf("%c",gate);}LexicalSyntaxSemanticNone of these