I'm sure this has a very simple answer, but it is a difficult question to search for:
What is the significance (necessity?) of adding a 'u' after an integer in C.
Example:
unsigned char Buffer1[2048];
unsigned char Buffer2[2048u];
Would anyone be kind enough to explain the importance of the 'u'?
I appreciate the help,
Edit: In addition to 'what' the 'u' stands for, I would like a better understanding of 'why' you would need to use it.
Again, thank you for your input,