moses_mcknight wrote: > Hi all, > > I've run across something I can't find any information on. I've seen > a number of variables defined as follows: > > #define MAX 8150ul > > What does the 'ul' at the end of the number do? I'm thinking it means > unsinged long, but can't find anything on it. > > Thanks, > Moses
Yup. Forces the compiler to make the number an unsigned long. I've also seen 'ull' which makes it an 'unsigned long long'. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* VerifyMyPC 2.5 Change tracking and management tool. Reduce tech. support times from 2 hours to 5 minutes. http://www.CubicleSoft.com/VerifyMyPC/
