Latest C Aptitude Question SOLUTION: Q. What is the output of the following program? void main(){ int a=1; while(a++ <= 1) while(a++ <= 2); printf("%d",a); }