fork(1) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(){
  5.  
  6. char arr[5] ="apple";
  7.  
  8. printf("%s ", arr);
  9.  
  10.  
  11. return 0;
  12.  
  13.  
  14. }
  15.  
  16.  
  17.  
  18.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
apple