fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char *pa;
  6. char a[8] = {5, 5, 5, 5, 6, 6, 6, 6};
  7. pa = a;
  8. printf("%x", *((int*)(pa + 2) + 0));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
6060505