fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main() {
  4. int *n = malloc(2 * sizeof(int));
  5. *n = 15122;
  6.  
  7. int *A;
  8. *A = 6;
  9.  
  10. if (*n == 15122) printf("Yay!\n");
  11. else printf("Blasphemy\n");
  12.  
  13. free(n);
  14. return 0;
  15. }
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
Yay!