Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any difference between uint and unsigned int? I'm looking in the site, but all question refers to C# or C++. I'd like an answer about C.

Note that I'm using GCC under Linux

share|improve this question

3 Answers

up vote 14 down vote accepted

uint isn't a standard type - unsigned int is.

share|improve this answer
and what does this fact implies? – the_candyman Apr 15 '11 at 14:15
1  
@the_candyman: That your gcc may happen to have uint - or it may happen to not have it. It will have unsigned int – Erik Apr 15 '11 at 14:16
That code written with uint won't be inherently portable unless uint is a typedef that you declare actually inside that code. – Jack Apr 15 '11 at 14:17
ok, thanks all :) – the_candyman Apr 15 '11 at 14:18
A better way of saying this would be that uint is not part of the C language but rather a typedef that some lazy people define. :-) – R.. Apr 15 '11 at 16:29
show 1 more comment

Some systems may define uint as a typedef.

typedef unsigned int uint;

For these systems they are same. But uint is not a standard type, so every system may not support it and thus it is not portable.

share|improve this answer
2  
Worth noting is that if you really want an unsigned int of a particular size, then use uintXX_t. – Blagovest Buyukliev Apr 15 '11 at 14:25
2  
@Blagovest: uintXX_t types are only defined in a specific C99 implementation if it makes sense to have them. uint_leastXX_t is defined in all C99 implementations. And, these types didn't exist in the previous version of teh Standard (not all current C compilers are C99 compilers). – pmg Apr 15 '11 at 14:50

The unsigned int is a built in (standard) type so if you want your project to be cross-platform, always use unsigned int as it is guarantied to be supported by all compilers (hence being the standard).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.