Tagged Questions
3
votes
2answers
581 views
Compilers and negative numbers representations
Recently I was confused by this question. Maybe because I didn't read language specifications (it's my fault, I know).
C99 standard doesn't say which negative numbers representation should be used by ...
0
votes
3answers
86 views
How to figure out if the first index in an array is a negative sign
I am trying to write a bool function that looks at the first index in an array which contains a positive or negative number and classifies if it is a negative sign (i.e. -). If it is a negative Sign ...