fork download
  1. // Online C compiler to run C program online
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5.  
  6.  
  7. int main() {
  8. int a = 0x5332;
  9. char *p = (char *)&a;
  10. printf("%p -> %X\n", p, (*p) & 0xFF);
  11. p++;
  12. printf("%p -> %X\n", p, (*p) & 0xFF);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
0x7ffd5049e464 -> 32
0x7ffd5049e465 -> 53