+ 4
DOUBT in a challenge !!
char *a="hello"; char* b= ++a +3; cout<<b; Output : o how??
1 Réponse
+ 3
a points to 'h'
++a increases it once, +3 - 3 more times, summary 4. a is of type char*, so a+4 will point to the 5th letter - it's 'o'
char *a="hello"; char* b= ++a +3; cout<<b; Output : o how??