<< Prev Question Next Question >>

Question 12/17

What happens if you try to compile and run this program?
#include <stdio.h>
int fun(int i) {
return i++;
}
int main (void) {
int i = 1;
i = fun(i);
printf("%d",i);
return 0;
}
Choose the correct answer:

LEAVE A REPLY

Your email address will not be published. Required fields are marked *