Open In App

C | Storage Classes and Type Qualifiers | Question 8

Like Article
Like
Save
Share
Report




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


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


Answer: (A)

Explanation: Compiler Error -> Initialization with incompatible pointer type.
The line typedef int *i makes i as type int *. So, the declaration of a means a is pointer to a pointer. The Error message may be different on different compilers.


Last Updated : 09 Feb, 2013
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads