Open In App
Related Articles

C | Storage Classes and Type Qualifiers | Question 6

Improve Article
Improve
Save Article
Save
Like Article
Like




#include<stdio.h>
int main()
{
  typedef static int *i;
  int j;
  i a = &j;
  printf("%d", *a);
  return 0;
}


(A) Runtime Error
(B) 0
(C) Garbage Value
(D) Compiler Error


Answer: (D)

Explanation: Compiler Error -> Multiple Storage classes for a.
In C, typedef is considered as a storage class. The Error message may be different on different compilers.

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 09 Feb, 2013
Like Article
Save Article
Previous
Next
Similar Reads