5
votes
why does printf show a 0 for vector size when cout shows the correct size?
Now, with the complete source, it is clear.
You declared:
int size;
Then you used:
std::printf("current last: %d sieve size: %ld\n", answer …
1
vote
library for doing diffs
Subversion comes with libsvn_diff and libsvn_delta licensed under Apache Software License.
…
5
votes
Relational Operator Implementation Dilemma
Have you considered using boost, and having your class inherit from boost::less_than_comparabl …
1
vote
Is there a GCC preprocessor directive to check if the code is being compiled on a 64 bit machine ?
A recommended solution is to make your application behave more predictably. If you make it dependent on the size of a memory pointer, you may have some undesirable surprises. Printf only understand …
15
votes
My return type is meaningless, why?
The pointer itself has value type, so it doesn't make sense to make it const. What the caller function does with the returned value can't be restricted by the called function. This is akin to tryin …
0
votes
1
vote
Is int x = ‘fooo’ a compiler extension?
Yes, it is standard, but implementation-defined.
In practical experience, it represents the 32-bit integer you get by concatenating bytes 'A', 'B', 'C' and 'D'.
…
0
votes
Define smallest possible datatype in c++ that can hold six values
The size of an enumeration is defined to be the same of an int. But depending on your compiler, you may have the option of creating a smaller enum. For example, in GCC, you may declare:
…
9
votes
What is the best way to exit out of a loop after an elapsed time of 30ms in C++
The calculations in the loop are for
updating a simulation. Every 30ms, I'd
like to update the viewport.
Have you considered using threads? What you describ …
3
votes
C++ Shared Library with Templates: Undefined symbols error
In addition to the other answers, you can explicitly instantiate template classes. This is only useful if you know beforehand what types the template parameters may assume. You instantiate the temp …
1
vote
Does this line declare a function? C++
int (&a())[2];
It declares a symbol a that is a function that takes no arguments and returns a reference to a two-element array of integers.
…
0
votes
mixing C and C++ file operations
Even if you manage to convert a FILE* to an std::fstream, that won't work as advertised. The FILE object returned by tmpfile() has a special property that, when close()'d (or when the program termi …
3
votes
Bitfield manipulation in C
The union usage has undefined behavior according to the ANSI C standard, and thus, should not be used (or at least not be considered portable).
From the …
10
votes
Allocate room for null terminating character when copying strings in C?
Yes, you should allocate at least strlen(src)+1 characters.
…
12
votes
Struct initialization of the C/C++ programming language?
The first statement creates a variable initialized to the given values, i.e., these values are built in memory and stored directly in the program executable in that variable address (for globals) o …
