devxlogo

Integer Affixes

Integer Affixes

You can use affixes to help the compiler figure out the correct type of a hard coded integer. The letter L affixed to a number indicates a long integer and the letter U indicates an unsigned type:

 #define MAX 1000L  // tells the compiler to store constant as a long rather than an int#define MAX 1000U  // tells the compiler to store constant as an unsigned int 

These affixes can be used together:

 #define MAX 1000UL // unsigned long

They are also case insensitive:

 #define MAX 1000ul // also unsigned long 
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist