fork(1) download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main() {
  5. int arr[] = {12, 13, 14, 15, 16};
  6. printf("%d, %d, %d\n", sizeof(arr), sizeof(*arr), sizeof(arr[0]));
  7. return 0; }
  8.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
20, 4, 4