Top

Discussion

What will be the storage class of variable I in the code written below?

#include< stdio>

int main()
{
int I = 10;
printf(“%d”, i);
return 0;
}

 

  • A.Automatic storage class
  • B.Extern storage class
  • C.Static storage class
  • D.Register storage class

Answer: A

No answer description available for this question.

No comment is present. Be the first to comment.
Loading…

Post your comment