This task is about copying a string. Where it is relevant, distinguish between copying the contents of a string versus making an additional reference
Continue ReadingC++: Generate Lower Case ASCII Alphabet
Generate an array, list, lazy sequence, or even an indexable string of all the lower case ASCII characters, from 'a' to 'z'. If the standard librar
Continue ReadingC++: Hello World Web Server
The browser is the new GUI ! The task is to serve our standard text "Goodbye, World!" to http://localhost:8080/ so that it can be viewed with a we
Continue ReadingC++: Hofstadter Q Sequence
The Hofstadter Q sequence is defined as: It is defined like the Fibonacci sequence, but whereas the next term in the Fibonacci sequence is th
Continue ReadingC++: Ludic Numbers
Ludic numbers are related to prime numbers as they are generated by a sieve quite like the Sieve of Eratosthenes is used to generate prime numbers.
Continue ReadingC++: Black Scholes Put Option Delta
// Calculate the Black Scholes European put option Delta double BS_Put_Option_Delta(double S, double K, double r, double v, double T) // Parame
Continue ReadingC++: CRC-32
Demonstrate a method of deriving the Cyclic Redundancy Check from within the language. The result should be in accordance with ISO 3309, ITU-T V.42,
Continue ReadingC++: Currying
Create a simple demonstrative example of Currying in the specific language. Currying may be achieved in C++ using the Standard Template Library fun
Continue ReadingC++: Flow-Control Structures
In this task, we document common flow-control structures. One common example of a flow-control structure is the goto construct. Note that Conditional
Continue ReadingC++: Formatted Numeric Output
Express a number in decimal as a fixed-length string with leading zeros. For example, the number 7.125 could be expressed as "00007.125". #inc
Continue Reading




