fork(2) download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5.  
  6. int idade = 0;
  7. char nome[20];
  8.  
  9. printf("Hello! How old are you? ");
  10. scanf("%d", &idade);
  11. while (idade == 0) {
  12. printf("\nAge cannot be 0 nor be decimal. Re-enter your age: ");
  13. scanf("%d", &idade);
  14. }
  15. printf("And what's your name? (write up to 20 characters, only 1st name) ");
  16. setbuf(stdin, NULL);
  17. scanf("%[^\n]s", nome);
  18. printf("\nHello %s, aged %d!\n", nome, idade);
  19.  
  20. return 0;
  21. }
Success #stdin #stdout 0s 4376KB
stdin
123 fabio
stdout
Hello! How old are you? And what's your name? (write up to 20 characters, only 1st name) 
Hello  fabio, aged 123!