by Suf | Sep 29, 2022 | C++, Finance, Programming, Tips
The Black-Scholes or Black-Scholes-Merton model is a financial mathematical equation for pricing options contracts and other derivatives. Fischer Black and Myron Scholes published the formula in their 1973 paper “The Pricing of Options and Corporate...
by Suf | Aug 26, 2022 | C++, Programming, Tips
This tutorial will go through how to iterate over the words of a string consisting of multiple words. Table of contentsIterate Over Words using istringstreamIterate Over Words using for-loopIterate Over Words using strtokIterate Over Words using Boost LibrarySummary...
by Suf | Aug 24, 2022 | C++, Programming, Tips
The simplest way to sum the elements of a vector is to use the accumulate function. This tutorial will describe the different ways to sum the elements of a vector with code examples. Table of contentsSum Elements of a Vector Using accumulateSum Elements of a Vector...
by Suf | Aug 23, 2022 | C++, Programming, Tips
The simplest way to iterate through a vector using a for loop and the [] operator to index the vector. This tutorial will describe how to iterate through a vector with code examples. Table of contentsIterate Through a Vector Using IndexingIterate Through a Vector...
by Suf | Aug 20, 2022 | C++, Programming, Tips
The error “member reference type is a pointer; did you mean to use ‘->'” occurs when using the dot . operator on a pointer to an object. We use the dot operator to access an object’s fields and methods. You can solve the error by using the...
by Suf | Aug 20, 2022 | C++, Programming, Tips
You can sort a vector in C++ using the std::sort function. This tutorial will go through how to sort a vector in ascending and descending order. Table of contentsSort a Vector using std::sortSort a Vector in Descending Order using std::sortSummary Sort a Vector using...