Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C | Storage Classes and Type Qualifiers | Question 8

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article




#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.

My Personal Notes arrow_drop_up
Last Updated : 09 Feb, 2013
Like Article
Save Article
Similar Reads