Computer Science, asked by krishnasangeeth07, 5 months ago

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 shashankmishra3880
0

Explanation:

I don't understand what is this?

Answered by bhavyashree97
1

I cannot understand dear...

Similar questions