The number of tokens in the following C code segment is
switch(inputvalue)
{
case 1 : b = c * d; break;
default : b = b++; break;
}
1
27
2
29
3
26
4
24
The number of tokens in the following C code segment is
switch(inputvalue)
{
case 1 : b = c * d; break;
default : b = b++; break;
}