Click to follow our Afritutor YouTube Channel, subscribe and click notifications and get updates on new learning videos
<=Back
The following program was created during a programming lesson. Use it to answer the question that follows.
main()
{
int i, j;
i = 12;
j = 10;
fn (&i, &j);
printf(“%d %d\n”, i,j);
}
fn (m,n);
int *m, *n;
{
(*m)++;
(*n)++;
printf(“%d, %d”, *m, *n);
}
Interpret the program
 Viewed: 615 times For Better experience and learning,for video answers, after video ends playing, click next question in the questions list!!!
Share in: