fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int data2[5] = {1, 2, 3, 4};
  5.  
  6. int len2 = 0;
  7. printf("%lu",sizeof(&data2));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5328KB
stdin
Standard input is empty
stdout
8