fork(3) download
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5.  
  6. int main (){
  7.  
  8. char s[15];
  9.  
  10. for(int i = 0; i < 20; ++i){
  11.  
  12. scanf(" %[234]", &s);
  13. printf(s);
  14. }
  15. //fgets(s, 15, stdin);
  16.  
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 9424KB
stdin
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
stdout
�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V�7��V