Guess the output or error of this C program?
what is the output or an error?
void main()
{
int a=10,*c,**b;
*c = &*a;
**d = &*c;
printf("%d %d %d",a,*c,**b);
getch();
}Please don't compile!
0