fork(1) download
  1. #include <dirent.h>
  2. #include <stdio.h>
  3.  
  4. int main(void) {
  5. const struct dirent de;
  6. printf("it's %zu!\n", sizeof de.d_name);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
it's 256!