Hi there,
Here's a basic question from the basics of C.
Woukd like to know the use of appending L or UL at the end of integer constant which is assigned to an unsigned int type variable. for eg: on a 32-bit machine
unsigned int i;
i= 543727232UL;
what way it is going to help?
Thanks
Swapna