Advertisement
Guest User

Untitled

a guest
Jan 25th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. >uname -m
  2. sun4u
  3. >cat strict.c
  4. #include <stdio.h>
  5. #include <stdint.h>
  6. int main(void){
  7. uint16_t a[8];
  8. printf("%d\n", *((int*) (a + 0)) );
  9. printf("%d\n", *((int*) (a + 1)) );
  10. }
  11. >gcc -o strict strict.c
  12. >./strict
  13. 0
  14. Bus Error (core dumped)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement