C-Programming-data-structure || 2017 SET 2 || NAT || 2-mark || Module 1: C Programming

Last Updated :
Discuss
Comments

Consider the following C program.

C
#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 ______ GATE CSE || 2017 SET 2 || NAT || 2-mark





0

Share your thoughts in the comments
Article Tags :