1
vote
3answers
155 views
Can we change the size of size_t in C?
Can we change the size of size_t in C?
3
votes
5answers
290 views
Clean code to printf size_t in C++ (or: Nearest equivalent of C99’s %z in C++)
I have some C++ code that prints a size_t:
size_t a;
printf("%lu", a);
I'd like this to compile without warnings on both 32- and 64-bit architectures.
If this were C99, I could use printf("%z", …
10
votes
7answers
448 views
size_t vs. intptr_t
The C standard guarantees that size_t is a type that can hold any array index. This means that, logically, size_t should be able to hold any pointer type. I've read on some sites that I found on the …
5
votes
5answers
223 views
What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?
I'm dealing with some code at work that includes an expression of the form
-(sizeof(struct foo))
i.e. the negation of a size_t, and I'm unclear on what the C and C++ standards require of compilers …
13
votes
7answers
2k views
unsigned int vs. size_t
I notice that modern C and C++ code seems to use size_t instead of int/unsigned int pretty much everywhere - from parameters for C string functions to the STL. I am curious as to the reason for this …
0
votes
6answers
513 views
size_t can not be found by g++-4.1 or others on Ubuntu 8.1
This has happened before to me, but I can't remember how I fixed it.
I can't compile some programs here on a new Ubuntu install... Something is awry with my headers.
I have tried g++-4.1 and 4.3 to …
-1
votes
2answers
171 views
Issue regarding size_t
If you go in my post history you'll see that i'm trying to develop an interpreter for a language that i'm working on. I want to use *size_t* using two different codes, but they all return nothing.
…
1
vote
5answers
984 views
What’s sizeof(size_t) on 32-bit vs the various 64-bit data models?
On a 64-bit system, sizeof(unsigned long) depends on the data model implemented by the system, for example, it is 4 bytes on LLP64 (Windows), 8 bytes on LP64 (Linux, etc.). What's sizeof(size_t) …
5
votes
8answers
818 views
Cross platform format string for variables of type size_t?
On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on others they are 4. …
6
votes
8answers
2k views
Does “std::size_t” make sense in C++?
In some code I've inherited, I see frequent use of size_t with the std namespace qualifier. For example:
std::size_t n = sizeof( long );
It compiles and runs fine, of course. But it seems like …
4
votes
7answers
410 views
overflows in size_t additions
I like to have my code warning free for VS.NET and GCC, and I like to have my code 64 bit ready.
Today I wrote a little module that deals with in memory buffers and provides access to the data via a …
1
vote
5answers
372 views
64 bit portability issues
All this originated from me poking at a compiler warning message (C4267) when attempting the following line:
const unsigned int nSize = m_vecSomeVec.size();
size() returns a size_t which although …
