0
What is the output of this code? int x = 65, *p = &x; void *q= p; char *r = q; printf("%c", *r);
Can anyone explain the above code?
3 Respuestas
+ 2
C ist casesensitive. So this Code returns an error due to the uppercase P.
Btw, why don't u just link a code?
+ 1
Thoq!
That's would be typing mistake. So don't see that just give him explanation about the output if you know.
Btw that code is enough to explain.