What will be the output of the program #include stdio.H?
Answers
Answered by
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