fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char line[100];
  6. int c;
  7.  
  8. // Ignore the rest of the line.
  9. while ( (c = fgetc(stdin)) != '\n' && c != EOF);
  10.  
  11. fgets(line, 100, stdin);
  12. printf("%s", line);
  13. }
  14.  
Success #stdin #stdout 0s 2116KB
stdin
Line to ignore.
Line to NOT ignore.
stdout
Line to NOT ignore.