Posts by user56497 • 43 points
2 posts
-
4
votes1
answer51
viewsQ: Unsigned modifier for integer type in C
The works say that this modifier causes the variable not to accept negative values, but when I compile this code: #include <stdio.h> void main() { unsigned int idade; idade = -3; /* Não existe…
-
-1
votes2
answers507
viewsQ: Doubts about the compilation and "linkage" phase of a C-Program
I have some questions about the steps used to compile a program in C. I have as source of study the book of Luis Damas (I know it is not advisable to have only one...), where he says that the…