fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. // your code goes here
  6. char *s="acb";
  7. //*s="ggggg";
  8. printf("%d %d %d %d",*s,*s++,*s+1,*(s+1));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
99 97 98 99