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