fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. int idade = 0;
  6. printf("Hello! How old are you? ");
  7. scanf("%d\n", &idade);
  8. while (idade == 0) {
  9. printf("\nAge cannot be 0 nor be decimal. Re-enter your age: ");
  10. scanf("%d", &idade);
  11. }
  12. char nome[21];
  13. scanf(" %[^\n]s", nome);
  14. printf("\nHello %s, aged %d!\n", nome, idade);
  15. }
  16.  
  17. //https://pt.stackoverflow.com/q/320255/101
Success #stdin #stdout 0s 4348KB
stdin
20
josé da silva
stdout
Hello! How old are you? 
Hello josé da silva, aged 20!