The phrase "I before E, except after C" is a widely known mnemonic which is supposed to help when spelling English words. Task Description
Continue ReadingC++: Integer Sequence
Create a program that, when run, would display all integers from 1 to ∞ (or any relevant implementation limit), in sequence (i.e. 1, 2, 3, 4, etc) i
Continue ReadingC++: Letter Frequency
Open a text file and count the occurrences of each letter. Some of these programs count all characters (including punctuation), but some only count
Continue ReadingC++: Linear Congruential Generator
The linear congruential generator is a very simple example of a random number generator. All linear congruential generators use this formula:
Continue ReadingC++ Interview Questions
C++ Full Course Lesson 2: Understanding a Simple C++ Program
https://www.youtube.com/watch?v=SWZfFNyUsxc&index=2&list=PLAE85DE8440AA6B83
Continue ReadingC++ Full Course Lesson 9: Functions
https://www.youtube.com/watch?v=bsWWHo4KDHE&list=PLAE85DE8440AA6B83&index=9
Continue ReadingC++: Maze Solving
For a maze generated by this task, write a function that finds (and displays) the shortest path between two cells. Note that because these mazes are g
Continue ReadingC++: Combinations
Given non-negative integers m and n, generate all size m combinations of the integers from 0 to n-1 in sorted order (each combination is sorted and th
Continue ReadingC++: Dot Product
Create a function/use an in-built function, to compute the dot product, also known as the scalar product of two vectors. If possible, make the vectors
Continue Reading




