Search Results

1
vote

Infinite loops - top or bottom?

When writing code for myself I use for(;;). Other people tend to be confused by its syntax and so for code that other people must see/use, I use while(true). …
5
votes

Why use infinite loops?

Finite state machines. They're not supposed to end until you reach an end state, at which point you break or return. …
0
votes

Why do people use __(double underscore) so much in C++

Almost no one deliberately both prefixes and suffixes their identifiers with double underscores, so name collisions are extremely rare. …
1
vote

Private and Protected Members : C++

Protected members can only be accessed by descendants of the class, and by code in the same module. Private members can only be accessed by the class they're declared in, and by code in the same mo …
2
votes

How to convert (not neccessarily programatically) between Windows’ wchar_t and GCC/Linux one?

You only need to worry about characters between \xD800 and \xDFFF inclusive. Every other char …
3
votes

#include directive: relative to where?

It is relative to both the current source file and to any search paths given (-I for gcc). …