edited by
1,208 views
4 votes
4 votes

 

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 30

The answer given is 29

edited by

2 Answers

Answer:

Related questions

1 votes
1 votes
1 answer
2
aaru14 asked Nov 21, 2017
1,400 views
in c programming which of the following is not used as a token seprator during lexical analysis?a)white spaceb)commentc)semicolond)none of thesetoken seprator means??