fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a;
  6. double b;
  7. printf("int;%lu;%p\n",sizeof(a),&a);
  8. printf("double;%lu;%p\n",sizeof(b),&b);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
int;4;0x7fff6df5b61c
double;8;0x7fff6df5b620