fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int *p, x = 10;
  5. p = &x;
  6. (*p)++;
  7. printf("%d \n", *p);
  8. }
  9.  
  10. //https://pt.stackoverflow.com/q/143084/101
Success #stdin #stdout 0s 4552KB
stdin
Standard input is empty
stdout
11