fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. int * val = malloc(sizeof(int));
  6. *val = 0;
  7. *val += 1;
  8. printf("%d\n", *val);
  9. (*val)++;
  10. printf("%d\n", *val);
  11. }
  12.  
  13. //https://pt.stackoverflow.com/q/99732/101
Success #stdin #stdout 0s 4564KB
stdin
Standard input is empty
stdout
1
2