#include <stdio.h> void main() { int t2 = 8; int t3 = 9; int t1 = ++t2 + t3--; printf("%d", t1); }
18
Previous Question Next Question
Your comments will be displayed only after manual approval.