Posts by seduardo • 136 points
1 post
-
2
votes2
answers287
viewsA: Int, unsigned and Signed modifiers in C language
When the modifier is used %d you are indicating an integer type value with sign, in this case negative. The correct modifier for no signal is %u. Internally, both signal and signal-free end up using…