Tagged Questions
6
votes
1answer
102 views
How to use C99 standard types for maximum portability AND efficiency across most platforms?
First, here is what I understand and think what is true for the question.
Use fast data types for single variables like counters or for loop indexes. For example:
#define LOOP_COUNT (100U)
...
0
votes
7answers
146 views
Is there a C99 data type guaranteed to be at least two bytes?
To determine the endianness of a system, I plan to store a multi-byte integer value in a variable and access the first byte via an unsigned char wrapped in a union; for example:
union{
unsigned ...
2
votes
1answer
53 views
Strict aliasing rules for allocated objects
C99 6.5/6 The effective type of an object for an access to its stored
value is the declared type of the object, if any. 75)
If a value is stored into an object having no declared type ...
11
votes
2answers
274 views
What is the difference between intXX_t and int_fastXX_t?
I have recently discovered existence of standard fastest type, mainly int_fast32_t and int_fast64_t.
I was always told that, for normal use on mainstream architecture, one should better use classical ...
3
votes
3answers
151 views
What are the arguments against using size_t?
I have a API like this,
class IoType {
......
StatusType writeBytes(......, size_t& bytesWritten);
StatusType writeObjects(......, size_t& objsWritten);
};
A senior member of the ...
22
votes
2answers
8k views
1
vote
2answers
104 views
What is the difference between “Real Types” and “Arithmetic Types” in C?
The C99 standard describes them as so:
The integer and real floating types
are collectively called real types.
Integer and floating types are
collectively called arithmetic types.
Does ...
6
votes
4answers
2k views
Type for array index in C99
What type for array index in C99 should be used? It have to work on LP32, ILP32, ILP64, LP64, LLP64 and more. It doesn't have to be a C89 type.
There are 5 candidates:
size_t
ptrdiff_t
intptr_t / ...
5
votes
4answers
8k views
What's the C++ equivalent of UINT32_MAX?
In C99, I include stdint.h and that gives me UINT32_MAX as well as uint32_t. However, in C++ the UINT32_MAX gets defined out. I can define __STDC_LIMIT_MACROS before including stdint.h, but this ...
8
votes
5answers
3k views
Why weren't new (bit width specific) printf() format option strings adoped as part of C99?
While researching how to do cross-platform printf() format strings in C (that is, taking into account the number of bits I expect each integer argument to printf() should be) I ran across this section ...