Cognizant Technology Solutions (CTS) 2011 Placement Paper
1. What is the output of the program #include #include void main() { int i,j=20; clrscr(); for(i=1;i<3;i++) { printf(“%d,”,i); continue; printf(“%d”,j); break; } getch(); } // A. 1,20 // B. 1,20,1,20 // c. 1,2...