Latest C Aptitude Question SOLUTION: what is the output of the following piece of code :- #include int main() { int a = 5; printf("%d %d %d",++a,a,a++); return 0; }