Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in std

When using C headers in C++, should we use functions from std:: or the global namespace?

c++ language-lawyer std

declaring a priority_queue in c++ with a custom comparator

c++ std priority-queue

How to declare std::unique_ptr and what is the use of it?

c++ pointers std unique-ptr

A std::map that keep track of the order of insertion?

Should I use std::function or a function pointer in C++?

c++ function c++11 callback std

Deleting elements from std::set while iterating

How do I reverse a C++ vector?

c++ vector stl std

printf with std::string?

c++ string namespaces printf std

Compelling examples of custom C++ allocators?

Replace part of a string with another string

c++ string replace substring std

cout is not a member of std

c++ io std member cout

Can you remove elements from a std::list while iterating through it?

c++ list std

Why would I ever use push_back instead of emplace_back?

c++ c++11 std

What's the difference between "STL" and "C++ Standard Library"?

How to find out if an item is present in a std::vector?

c++ vector std

Why is "using namespace std;" considered bad practice?