Computer Science, asked by aadeshkothwar, 3 months ago

Q 1 - What is the output of the following program?
#include<stdio.h>
void f()
{
static int i;
++i;
printf("%d", i);
}
main()
{
f();
f();
f();
}
A-111
B-000
C-321
D-123​

Answers

Answered by brnegi
2

Answer:

123 shayad sa galat hai

Similar questions