GATE Computer Science (CS) 2017 Shift 2 Solved Paper

© examsiri.com
Question : 64 of 65
 
Marks: +1, -0
Consider the following C Program
#include<stdio.h>
int main ( ) {
int m = 10;
int n, n1;
n = ++m;
n1 = m++;
n--;
--n1;
n -= n1;
printf(‘’%d’’, n) ;
return 0;
}

The output of the program is ______. 
  • Your Answer:
Go to Question: