Algorithm "handle age":
// idade deve sempre ser positiva, por isso vou usar unsigned
unsigned int t1;
printf("Digite sua idade:");
scanf("%d", &t1);
printf("Idade: %d", t1);
Doubt: Even though I enter with a negative value, 2 printf()
appears negative. I did not understand the actual use of the modifier unsigned
of int
?