Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++-faq

"std::endl" vs "\n"

Why is iostream::eof inside a loop condition (i.e. `while (!stream.eof())`) considered wrong?

c++ iostream c++-faq

When can I use a forward declaration?

What does the C++ standard state the size of int, long type to be?

c++ c++-faq

Why isn't sizeof for a struct equal to the sum of sizeof of each member?

c++ c struct sizeof c++-faq

Meaning of 'const' last in a function declaration of a class?

What is std::move(), and when should it be used?

What is object slicing?

std::wstring VS std::string

Why use apparently meaningless do-while and if-else statements in macros?

c++ c c-preprocessor c++-faq

What does T&& (double ampersand) mean in C++11?

Why should C++ programmers minimize use of 'new'?

What is the difference between a definition and a declaration?

What are the rules about using an underscore in a C++ identifier?

What are the new features in C++17?

c++ standards c++-faq c++17

Undefined behavior and sequence points

Do the parentheses after the type name make a difference with new?

What are POD types in C++?

c++ types c++-faq

Difference between private, public, and protected inheritance

Where and why do I have to put the "template" and "typename" keywords?