0
Can someone explain output of this code?
#include<stdio.h> Main(){ char *p="helloworld"; Printf("%c",*&*p); return0;}
3 Answers
+ 1
You should correct some mistakes in your code.
https://code.sololearn.com/c40DZT4g6oU6/?ref=app
*p is a pointer
*p is pointing to start, "h"
"(p+1) is pointing to next, "e"
and so on..
0
https://code.sololearn.com/c1mwL6wGmr39/?ref=app
But the output of my code came out Tobe 'h'...