Given a set of positive integers, the task is to write a function to order the integers in such a way that the concatenation of the numbers forms the
Continue ReadingC++: Create a File
In this task, the job is to create a new empty file called "output.txt" of size 0 bytes and an empty directory called "docs". This should be done twic
Continue ReadingScott Meyers – the Evolving Search for Effective C++ – Keynote @ Meeting C++ 2014
https://www.youtube.com/watch?v=smqT9Io_bKo
Continue ReadingC++ Full Course Lesson 1: Installing CodeBlocks
https://www.youtube.com/watch?v=tvC1WCdV1XU&list=PLAE85DE8440AA6B83
Continue ReadingFree C++ Books
1. Fundamentals of Programming C++ (Richard L. Halterman) 2. C++ Annotations (Frank B. Brokken) 3. The C++ Hackers Guide (Steve Oualline)
Continue ReadingC++: Look-and-Say Sequence
The Look and say sequence is a recursively defined sequence of numbers studied most notably by John Conway. Sequence Definition Take a decimal
Continue ReadingC++: Multiple Inheritance
Multiple inheritance allows to specify that one class is a subclass of several other classes. Some languages allow multiple inheritance for arbitrary
Continue ReadingC++: Higher-Order Functions
Pass a function as an argument to another function. Function Pointer Works with: g++ version 3.4.2 (mingw-special) C++ can pass function pointers i
Continue ReadingC++: Hamming Numbers
Hamming numbers are numbers of the form . Hamming numbers are also known as ugly numbers and also 5-smooth numbers (numbers whose prime div
Continue ReadingC++: Random Number Generator
Rule 30 is considered to be chaotic enough to generate good pseudo-random numbers. As a matter of fact, rule 30 is used by the Mathematica software fo
Continue Reading




