Latest C Aptitude Question SOLUTION: What will be the output of the following C program? #include void main(void) { int a=5, b, c,d,e; e= (b=++a) + (c=a++) + (d=++a) ; printf("%d, %d, %d, %d, %d", a,b,c,d,e)