odds and sods
[tridge/junkcode.git] / tbo.c
1 #include <stdio.h>
2
3 main()
4 {
5 short d = 255;
6 unsigned char *p = &d;
7 printf("%x %x\n",(unsigned int)p[0],(unsigned int)p[1]);
8 }