fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x[8],i;
  5. for(i=0;i<=7;i++) scanf("%d",&x[i]);
  6. printf("%x",&x[0]);
  7. printf("%x",x);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5288KB
stdin
12 13 1 2 3 4 5 6
stdout
7f6c2a807f6c2a80