Q.

What is storage class for variable A in below code?
int main()
{
int A;
A = 10;
printf("%d", A);
return 0;
}

A. extern
B. auto
C. register
D. static
Answer» B. auto
2.6k
0
Do you find this helpful?
8

Discussion

No comments yet