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