Consider the following program in C:
int main () {
int m = 5;
int n = ++m, o = m++;
n--;
--o;
n -= o;
printf("Value of n is: %d", n);
return 0;
}
Count the number of tokens in the above program. Ignore all errors.
1
41
2
42
3
43
4
44
5
Question Not Attempted