#include <stdio.h> void main() { int n1 = 100; int n2 = sizeof(n1++); printf("n1 is %d", n1); }
n1 is 100
Previous Question Next Question
Your comments will be displayed only after manual approval.