MCQOPTIONS
 Saved Bookmarks
				| 1. | 
                                    What will be the output of the following program? #include< stdio.h> int main() { register int I = 2; static char ch = ‘A’; auto float j; int k; k = ++ch && I; k = ++ch; j = i-- + ++k * 2; printf(“%d %f”, k , j); return 0; } | 
                            
| A. | B 3 | 
| B. | 65 138.000000 | 
| C. | 68 138.000000 | 
| D. | A 138 | 
| Answer» D. A 138 | |