Computer Science, asked by tejuu71, 11 months ago

Find the output of the following program?
void main()
fun();
fun();
void fun()
static int x = 5;
X++;
printf("%d", x);​

Answers

Answered by sunitazirange
0

Answer:

there will be an error as

d is an undefined variable.

Explanation:

Similar questions