Search Results

1
vote

Why does a C/C++ program often have optimization turned off in debug mode?

Another of the issues with optimizations are inline functions, also in the sense that you will always single-step through them. With GCC, with debugging and optimizations enabled together, …
1
vote

(Encoded) String handling in C++ - questions / best practices?

String algorithms for UTF-8 etc. strings -- computing the length, parsing, etc. How is this done best? mbrlen gives you the length of a C string. I don't think …
3
votes

(Encoded) String handling in C++ - questions / best practices?

For a shorter answer, I would just recommend using UTF-16 for simplicity; Java/C#/Python 3.0 switched to that model exactly for simplicity. I've always expected wchar_t to be 16 or 32bit wide, and …
1
vote

Why are C character literals ints instead of chars?

I didn't know this indeed. Before prototypes existed, anything narrower than an int was converted to an int when using it as a function argument. That may be part of the explanation. …
1
vote

C library vs WinApi

A few additional points on some examples: FillMemory, ZeroMemory Neither these nor the C functions are system calls, so either one might be implemented …
0
votes

Array of structs and new / delete

Say I wanted to 'delete' an item, like so: items[5] = NULL; I know little Visual Basic, but that smells like a Visu …
2
votes

Are memory leaks ever ok?

While most answers concentrate on real memory leaks (which are not OK ever, because they are a sign of sloppy coding), this part of the question appears more interesting to me: …
0
votes

Is there an acceptable limit for memory leaks?

It does look like SDL developers don't use Valgrind, but I basically only care about those 120 bytes lost. With this in mind, I've been running my 'Hello world' programs thro …
7
votes

Passing object ownership in C++

boost::interprocess is a library for interprocess communication, so I wouldn't use it for different purposes. As discussed on this forum: …
0
votes

Is there a performance difference between i++ and ++i in C++?

The intended question was about when the result is unused (that's clear from the question for C). Can somebody fix this since the question is "community wiki"? About premature optimizations …
2
votes

Hand Coded GUI Versus Qt Designer GUI

I'd add that one of the reasons for using graphical designer was the lack of layout managers in Win32, for instance. Only absolute positioning was possible, and doing that by hand would have just s …