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