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

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation