fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. char arr[] = "abcd";
  6.  
  7. char *p = arr;
  8.  
  9. printf("%c\t", +*p);
  10.  
  11. printf("%c\t", *p++);
  12.  
  13. printf("%c\t", (*p)++);
  14.  
  15. printf("%c\n", *p);
  16.  
  17. return 0;
  18.  
  19. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
a	a	b	c