Posts by Felipy Camargo • 13 points
1 post
-
1
votes2
answers287
viewsQ: Int, unsigned and Signed modifiers in C language
Algorithm "takes 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 if I…