What does the "U" in c defines mean (i.e. #define FOO ((uint32_t)1000U)))

Viewed 4144

I think it could mean unsigned. But what exactly is the difference between:

#define FOO ((uint32_t)1000U))   

and

#define FOO ((uint32_t)1000))
1 Answers
Related