Computer Science, asked by dhruv2200439, 11 months ago

Predict the output #include void main() { int c; for(c=4; c>=1; c=c-1) { cout<

Answers

Answered by sutapabanerjee2017
1

Answer:

code: #include <stdio. h> void m (int *p) {int I = 0; for (I = 0;I < 5; I++) printf ("%d\t", p[I]);} void main() {int a [5] = {6, 5, 3}; m(&a);}? Reformatted: #include <stdio.

Similar questions