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