fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char buf[4];
  6. int *i = (int *) buf;
  7. short *s = (short *) buf;
  8.  
  9. *i = 42;
  10. s[0] = 0;
  11. s[1] = 1;
  12.  
  13. printf("%d", *i);
  14. }
Success #stdin #stdout 0.02s 2680KB
stdin
Standard input is empty
stdout
42