Development discussion. Logged to https://ddnet.tw/irclogs/ Connected with DDNet's IRC channel, Matrix room and GitHub repositories — IRC: #ddnet on Quakenet | Matrix: #ddnet-developer:matrix.org GitHub: https://github.com/ddnet
Between 2019-08-05 00:00:00Z and 2019-08-06 00:00:00Z
I have a variable representing money and it is a sqlite3_uint64 and the compiler yells at me when i compare it against signed integers which makes sense.. but I am not sure how to fix it.
long and long int are identical. So are long long and long long int. In both cases, the int is optional.
As to the difference between the two sets, the C++ standard mandates minimum ranges for each, and that long long is at least as wide as long.
I am transitioning from Java to C++ and have some questions about the long data type. In Java, to hold an integer greater than 232, you would simply write long x;. However, in C++, it seems that lo...
08:48
long is a int64
08:49
Long and long int are at least 32 bits.
long long and long long int are at least 64 bits.
08:49
but if ur compiler is 64bit long will probs be 64bit