@aadit-kapoor-EBxnXT
•
Oct 15, 2024
Oct 15, 2024
1.3K
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!