Yes, friends, I have been sharing posts about C++ and have not written many posts about software engineering stuff. This will change from this post and I will try to increase the frequency of such topics. Let us, talk about the topic of this post (in fact post series now on). So if I would… Continue reading
Weekly C++ 15 – I/O Manipulators
In our programs, especially for small ones, to display some values quickly, one of the most common methods we use is to print something on standard output. For C ++, the most common method used for this is probably std :: cout. So how much are we familiar with this library’s abilities? In this article,… Continue reading
(Turkish) OBS Studio
Sorry, this entry is only available in Turkish.
Weekly C++ 14 – std::optional
Hello, my friends, we are together with another weekly C++ post. The topic of this post is about std::optional which is introduced with C++ 17. In this post, we are going to take alook at why we need such capability an in which cases we can use that with example codes. This post will be… Continue reading
Weekly C++ 13 – std::find_if and auto code snippet
Hello my friends. In this post, we are going to have a brief look at std::find_if API (provided via algorithm library) snippet which you can use frequently in your codes. You can find the prototype of API as follow:
1 2 |
template <class InputIterator, class UnaryPredicate> InputIterator find_if (InputIterator first, InputIterator last, UnaryPredicate pred); |
Let us look at the official definition which says that it finds the first element… Continue reading