fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a=0xabcdef12;
  5. char *c = (char *)&a;
  6.  
  7. printf("%x",*c);
  8. }
  9.  
Success #stdin #stdout 0.01s 5316KB
stdin
123
stdout
12