Question
How does STM32F0 core handle unsigned long int overflow
Posted on April 04, 2018 at 01:50
For example, if I have:
unsigned long int Variable1;
Variable1 = 0xFFFFFFFF;
Variable1++;
What would be the value of Variable1? Would it be back to zero?
Thanks.
Note: this post was migrated and contained many threaded conversations, some content may be missing.