Welcome to the life of continuous learning.... learning C++ programming language.
Syllabus
1. Introduction
Brief history of C++
Preparation for programming
Program Development Life Cycle
2. Component of a Programming Language
Identifier,
variable,
constant,
statement Standard data type (int, float, double, char)
Input/output statement
C++ block structure
Arithmetic expressions
Operators - Unary operator ++, -
3. Control structure
Concept
Selection :
• if statement
• type of if statement
• nested if
4. Repetition :
• using for statement
• while statement
• do..While statement
Nested loops
5. Functions
Introduction to function
Predefined function
• sqrt( ),
abs( ),
pow( ),
setw( ),
setprecision( )
Function without parameter
Function with parameter
• Pass by value
• Pass by reference
Function with return value
6. Arrays
Introduction to one dimensional array