

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following is the correct output for the program given below?#include<stdio.h>int main(){ const int k = 10; printf("%d n", k++); return 0;} |
A. | 10 |
B. | 1 1 |
C. | No output |
D. | Error: ++ needs a l value |
Answer» E. | |