460 views
0 votes
0 votes
Which phase of the compiler detects the error?

#include<stdio.h>

int main()

{

printf(“%d”,2..3);

return 0;

}

I think lexical analyzer am i correct?

Please log in or register to answer this question.

Related questions

1 votes
1 votes
2 answers
1
Souvik33 asked Jan 12, 2023
587 views
What is the earliest stage compiler error for the following C code snippet:int x = @33;Lexical ErrorSyntax ErrorSemantic ErrorNone
1 votes
1 votes
1 answer
2
Nisha Bharti asked Sep 18, 2022
343 views
For 8-bit checksum is this correct?
1 votes
1 votes
1 answer
3
vinay chauhan asked Jan 4, 2019
1,731 views
How many bits can a 2-dimensional parity detect and correct? Is there any general formula for no of bit detection and correction for N-dimensional parity?
0 votes
0 votes
1 answer
4
Vegeta asked Oct 15, 2018
778 views
CRC can detect any odd number of errors.CRC can detect all burst errors of less than the degree of the polynomial.Please explain and if possible give proof