0
Explain what happens to this code snippet, when executed int *p =10; p++, printf("%x %x",p, *p);
5 Answers
+ 5
Mohan Kumar KM please move you code down to the description 👇
+ 1
This code produces compile errors. No output.
+ 1
You can run it in SoloLearn playground and check it yourself.
0
int *p =10 ;
p++,
printf("%x %x", p, *p) ;
0
What's the errors