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