edited by
1,446 views
1 votes
1 votes
in c programming which of the following is not used as a token seprator during lexical analysis?

a)white space

b)comment

c)semicolon

d)none of these

token seprator means??
edited by

1 Answer

0 votes
0 votes
d, blank symbol, arithmetic/ logical operators, left/right parenthesis, operators, special symbols are used as token separator

Related questions

4 votes
4 votes
2 answers
3
jatin khachane 1 asked Nov 23, 2018
1,258 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