char *buffer = 0123456789;
char *ptr = buffer;
ptr += 5;
printf( %s, ptr );
printf( %s, buffer );
What will be printed when the sample code above is executed?
Reveal answer
Fill a bubble to check yourself
char *buffer = 0123456789;
char *ptr = buffer;
ptr += 5;
printf( %s, ptr );
printf( %s, buffer );
What will be printed when the sample code above is executed?