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