Vla_DOS

Untitled

Jan 30th, 2023
832
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. void input_loop()
  5. {
  6.     char input[100];
  7.     while (strcmp(input, "quit")) {
  8.         printf("Enter a string: ");
  9.         scanf("%s", input);
  10.     }
  11. }
  12.  
  13. int main()
  14. {
  15.     input_loop();
  16.     return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment