fork download
  1. #include <stdio.h>
  2. int main() {
  3. int a;
  4. char *x;
  5. x= (char *) &a;
  6. a=512;
  7. x[0]=1;
  8. x[1]=2;
  9. printf("%d\n",a);
  10. return 0;
  11. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
513