This document is part of the HTML publication "An Introduction to the Imperative Part of C++" The original version was produced by Rob Miller a
Continue ReadingWhat Concepts Are the Most Dangerous Ones in Quantitative Finance Work?
There are a few things that form the common canon of education in (quantitative) finance, yet everybody knows they are not exactly true, useful, well-
Continue ReadingScott Meyers – the Evolving Search for Effective C++ – Keynote @ Meeting C++ 2014
https://www.youtube.com/watch?v=smqT9Io_bKo
Continue ReadingBjarne Stroustrup – The Essence of C++
https://www.youtube.com/watch?v=86xWVb4XIyE
Continue ReadingC++: Day of the Week
A company decides that whenever Xmas falls on a Sunday they will give their workers all extra paid holidays so that, together with any public holidays
Continue ReadingWith C arrays, why is it the case that a[5] == 5[a]?
As Joel points out in Stack Overflow podcast #34, in C Programming Language (aka: K & R), there is mention of this property of arrays in C: a[5] =
Continue ReadingC++: What are the differences between a pointer variable and a reference variable in C++?
I know references are syntactic sugar, so code is easier to read and write. But what are the differences? Summary from answers and links bel
Continue ReadingC++: Guess the Number With Feedback
The task is to write a game that follows the following rules: The computer will choose a number between given set limits and asks the player for
Continue ReadingC++: Find the Last Sunday of Each Month
Write a program or a script that returns the last Sundays of each month of a given year. The year may be given through any simple input method in your
Continue ReadingC++: Guess the Number With Feedback (Vs Player)
The task is to write a player for the game that follows the following rules: The scorer will choose a number between set limits. The computer pla
Continue Reading