fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char i='a', *p;
  5. p=&i;
  6. (*p)++;
  7. printf("%d", *p);
  8. }
  9.  
Success #stdin #stdout 0s 4536KB
stdin
Standard input is empty
stdout
98