Computer Science, asked by pragati3297, 5 hours ago

6.What is the output of the following program? #include void f() { printf("Hello\n"); } main() { ;}​

Answers

Answered by cshainee2009
1

Answer:

Programs require data to be input. This data is used (processed) by the program, and data (or information ) is output as a result.

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