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