What is the output 
#include<stdio.h> 
int main() {
int a=10,b=a++ + ++a; 
printf ("%d %d %d %d", b,a++, a,++a); 
return 0;
}


Posted on by