retagged by
321 views

1 Answer

Answer:

Related questions

1 votes
1 votes
1 answer
3
Mrityudoot asked Nov 12, 2023
246 views
How to differentiate between Lexical, semantic and syntax error from a given code snippet.Why is this lexical error and not syntax error? $ y = 0x5i; $
4 votes
4 votes
2 answers
4
jatin khachane 1 asked Nov 23, 2018
1,293 views
int main() { int a,b; a=10; b=15; printf("a=%d,b=%d",a++,b ); }The number of tokens in the above C program is_________.I am getting 30The answer given is 29