Please wait...
THANKU FOR BEING A PART OF OUR JOURNEY TO BRING "REVOLUTION IN EDUCATION"
We Genuinely APPRECIATE your PATIENCE

58
M: +2.00/-0.33

Consider the following C program.
(# include <stdio.h>
int main ( ) {
int m = 10;
int n, n1;
n = ++m;
n1 = m++;
n--;
--n1;
n - = nl;
printf (“%d”, n);
return 0;
})
The output of the program is ______.

[GATE CS 2017 Set 2]
A
B
C
D