Guess the output or error of this C program?

Aadit Kapoor
@aadit-kapoor-EBxnXT โ€ข Oct 15, 2024

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!

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform