Code-Cyan
a beginner's C++ programming blog
Pages
(Move to ...)
home
common snafus
▼
Friday, March 27, 2015
Post #15 - more classes/objects
›
This post is a continuation of the previous topic, with a different program. In the following program, a constructor and destructor are used...
Tuesday, March 24, 2015
Post #14 - first look at classes/objects
›
Lot of catching up to do here, eheh... Here's a simple demonstration of a class. A class is like a function inside of a function, it mak...
Tuesday, March 17, 2015
Post #12 - recursive function
›
Jumping a bit to recursive functions here. What's a recursive function? It's a function that calls itself from within its own decla...
Sunday, March 15, 2015
Post #11 - function templates
›
Function templates use the same function to accept multiple types of data without having to recreate the function again for each needed data...
Post #10 - max 'n' min
›
By the way, happy 3.14 day. Is there a program that can calculate pi to xx number of digits? Haven't heard of one yet... Recently I c...
Thursday, March 12, 2015
Post #7 - arrays and sentences
›
I realized that I had skipped number 7 in the post count... Here's an example of a sentence array (to continue from post #9). In...
Post #9 - using an array
›
Today I'll introduce arrays. Arrays are sections of consecutive memory spaces that can hold variables of the same data type in order. Th...
›
Home
View web version