fork(2) download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5. const char str[] = "%s\n";
  6. printf(str, NULL);
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
(null)