Watch:
#include<stdio.h>
int main( void )
{
char *c = "Hello World!"

printf( "%s\n", c + 6 );
printf( "%s\n", &c[6] );

return 0;