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
2
Answer:
123 shayad sa galat hai
Similar questions