Search Results

2
votes

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

Optimizing code is an automated process that improves the runtime performance of the code while preserving semantics. This process can remove intermediate results which are unncessary to complete …
0
votes

Priority of C++ operators “&” and “->”

-> has a higher priority than & (address of). So your expression would be evalutated as &(row->count) …
1
vote

Do you use NULL or 0 (zero) for pointers in C++?

I once worked on a machine where 0 was a valid address and NULL was defined as a special octal value. On that machine (0 != NULL), so code such as char *p; ... if (p …
2
votes

Pros & Cons of putting all code in Header files in C++ ?

I like to think about separation of .h and .cpp files in terms of interfaces and implementations. The .h files contain the interface descriptions to one more classes and the .cpp files contain the …
-2
votes

What is the C++ memory model?

In a nutshell, the C++ memory model consists of... A stack that grows downward -- that is, when you push a stack frame the stack pointer has a value less that it was …
0
votes

How to declare/define a class with template template parameters without using an extra template parameter

You can nest parameters. That is, the value of a parameter can itself be parameterized. template <typename X> struct A { X t; }; template <typename C> struct B { …
1
vote

Good Data Structures text book

Data Structures and Algorithms by Aho, Hopcroft, and Ullman. A classic text on the subject. …