python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Calculate time difference in C++(hours, minutes, seconds) with type unsigned int
For one of my college classes using C++, we have to implement a class that creates time objects and that can do different arithmetic functions (+, -, -=, +=, etc...) between two different times.
My te...
itsthea
Votes: 0
Answers: 1
c programming how do i read the bytes stored as little indian?
unsigned short num = 258;
//How can i read the byte value as on how this num 258 is getting store (by default is stored as litle indian right?) so the value should be something like this [ 2, 1 ]or [0...

user14570759
Votes: 0
Answers: 1
Difference between uint can be negative
I have a question about unsigned integer in C/C++. They and the results of operations on them should always be positive or equal to zero but it does not look the case with uint16_t difference. uint ar...

Simone Pernice
Votes: 0
Answers: 2