384 views

Please log in or register to answer this question.

Related questions

2 votes
2 votes
2 answers
1
Na462 asked Nov 7, 2018
3,600 views
0 votes
0 votes
0 answers
2
syncronizing asked Sep 22, 2018
398 views
Which of the following is not a token of c -program?A. 1.02e + 2B. # defineC. 123.33D. MAXplease explain why?
0 votes
0 votes
1 answer
3
syncronizing asked Sep 21, 2018
5,275 views
Question:Find the number of tokens in the following C code using lexical analyzer of the compiler.
1 votes
1 votes
1 answer
4
sagar27 asked Sep 21, 2018
5,201 views
Find no of tokens in below program.#include<stdio.h>main(){ int I; int *pi = &I; //parent pointer scanf("%d",pi); printf("%d\n", I+5);}