edited by
5,593 views
5 votes
5 votes
void main()

{

i/*nt*/a=10;

return;

}

Number of tokens in above code:?
edited by

1 Answer

Related questions

8 votes
8 votes
2 answers
1
vishwa ratna asked Jan 18, 2017
4,986 views
The number of tokens in following program?# define M 100 int main ( ) { // declare variables int n = 2020; return n % M; }Your Answer:19Correct Answer: 16 Status: inco...
0 votes
0 votes
1 answer
4
rahul sharma 5 asked Dec 25, 2016
661 views
Count tokens in following -1. in/*Hello!How are you/*t=10;I know that comments will be ignored,but now willin and tare two separate tokens or one?Please explain reason ...