Computer Science, asked by mohits7051, 10 months ago

What will be the output of the program #include stdio.H?

Answers

Answered by pranamyasony
0

Answer:

>> int i, j, m; The variable i, j, m are declared as an integer type. >> j = a[1]++; becomes j = 2++; Hence j = 2 and a[1] = 3. Hence the output of the program is 3, 2, 15.

Similar questions