iii) Have a look at the following piece of code, state and explain the output.
#include <stdio.h>
int fun(){
static int i;
i++;
return i;
}
int main(void) {
// your code goes here
static int l;
for(int i = l; i < 10; i = fun())
printf("Hi ");
return 0;
}
Attachments:
Answers
Answered by
0
Explanation:
I don't understand what is this?
Answered by
1
I cannot understand dear...
Similar questions