retagged by
619 views
0 votes
0 votes
int main()

{

    int a,b;

     a = 10;

      b = 11;

      printf(“%d %d”, a++,b--);

}

The number of tokens is
retagged by

1 Answer

2 votes
2 votes

int main() :-4

{------------:1

    int a,b;--------------:5

     a = 10;----------------:4

      b = 11;-------------:4

      printf(“%d %d”, a++,b--);-----------------:11

}----------------:1


Total Token:- 30
 

edited by

Related questions

2 votes
2 votes
2 answers
3
gatecse asked Dec 9, 2020
605 views
The number of tokens in the following C/C++ statement is :printf("i=%d, &i=%xx", i&i);$9$$6$$10$$12$