fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. int x;
  6. scanf("%d", &x);
  7. char tekst[80];
  8.  
  9. switch(x)
  10. {
  11. case 1:
  12. printf("Podaj Wartosc:\n");
  13. scanf(" %[^\n]s",tekst);
  14. printf("%s",tekst);
  15. break;
  16. default:
  17. printf("Wybrales nieodpowiednia opcje");
  18. break;
  19. }
  20. return 0;
  21. }
Success #stdin #stdout 0s 2252KB
stdin
1
Ala ma kota
---
stdout
Podaj Wartosc:
Ala ma kota