Sizeof operator again
char * p = "Hello World" ;
int a ;
char b ;
printf ( "%d\n" , sizeof ( p ++));
printf ( "%c\n" ,* p );
printf ( "%d" , sizeof ( a , b ));
printf ( "%d" , sizeof ( b , a )); Explain why p didn't get incremented and what is the use of comma operator here.