fork download
  1. #include<stdio.h>
  2. int main() {
  3. char *p1="Graduate";
  4. char *p2=p1;
  5. printf("%c",*++p2);
  6. printf("%d",sizeof(p2));
  7. return 0;
  8. }
Success #stdin #stdout 0s 4388KB
stdin
Standard input is empty
stdout
r8