Close sidebar

#include<stdio.h>intmain(){ int a=5,b=6; printf("%d",++a + ++b + b++); return0;

Ans

Your Answer

a++ =6 ++b=b++ =7 so 6+7+7=20

Comment
Practice Mock Test
tcs