fork download
  1. // Online C compiler to run C program online
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. // Write C code here
  6. unsigned char arr[4];
  7. unsigned int * res;
  8.  
  9. arr[2] = 0x33;
  10. arr[1] = 0x22;
  11. arr[0] = 0x11;
  12.  
  13. arr[3] = arr[2];
  14.  
  15. res=(unsigned int *)arr;
  16. printf("%x",*res & 0x807FFFFF);
  17. //& 0x807FFFFF
  18.  
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5296KB
stdin
Standard input is empty
stdout
332211