Latest C++ Aptitude Question SOLUTION: What will be the output of following program? main() { int i=1; for(;i<=32768;i++) printf("%d",i); } Options 1) 32767 2) infinite loop 3) 32768 4) None of the above