Q. What is the output of the program.?
#include<stdio.h>
Code:
#include<stdio.h>
static int k;
int main()
{
printf("%d", k);
return 90;
}
β
Correct Answer: (B)
0
static int k;
int main()
{
printf("%d", k);
return 90;
}
You must be Logged in to update hint/solution