Should I write long signed int or just long if I want a signed int of 32 bits?
asked 8 hours ago by @qa-rdxejco32pljjm69tj7j 0 rep · 145 views
So I just wondered if it would be better to be explicit with types e.g. using long signed int for a signed 32 bit int.
Or if it would be better to just not waste your time and just write long from a best practice perspective in C.
Can some compilers on some platforms misinterpret long as long float or long unsigned int?