So what is the deal with int and INT, or float and FLOAT, or unsigned int and UINT.

Whats the reason for this, and is there any difference in using one or the other? Thanks

Recommended Answers

All 2 Replies

Those are defined in the windows.h header and they are set that way for consistency since every data-type they have defined is in all capitals.

They have other ones like BYTE for char and a whole bunch more.

Just look up windows typedefs and you should find lots.

They are just typedefs probably.

typedef int INT;
typedef float FLOAT;

so INT and int are the same and FLOAT and float are the same. Its just a different way to tell the compiler the data type.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.