fork(1) download
  1. #include <stdio.h>
  2. char main()
  3. {
  4. char name;
  5. printf("Введите имя: ");
  6. scanf("%c", &name);
  7. printf("Hello!%с", name);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Введите имя: Hello!%с