C & C++ PROGRAMMING
C & C++ PROGRAMMING
C programming - Syllabus
Chapter 1: History of CΒ Introduction of C Structure of C programming
Chapter 2: Fundamental of CΒ Data types Variables Keywords Identifier Input Output Statement
Chapter 3: Decision MakingΒ Statement Types A) Conditional Statement 1. Simple if 2. Nested If 3. Switch B) Looping Statement 1. For loop 2. While loop 3. Do-while Loop
Chapter 4: OperatorsΒ 1. Arithmetic 2. Compare 3. Relational 4. Logical 5. Assignment 6. Increment or Decrement operators
Chapter 5: ArrayΒ Intro Array Types of Array 1. One dimension 2. Two Dimension
Chapter 6: PointerΒ Intro Pointer Normal variable Vs Pointer Variable Pointer with array
Chapter 7: Function IntroΒ Function How to create function Step 1: Declaration function Step 2: Calling function Step 3: Definition function Function Types 1. with argument and with return type 2. with argument and without return type 3. without argument and with return type 4. without argument and without return type Function with array Function with Pointer
Chapter 8: StructureΒ Intro to structure Structure vs array Structure with array Structure with pointer Structure with function
Chapter 9: FilesΒ Intro file How to create file File accessing mode File input and output function
C++Β Programming - Syllabus
Chapter 1: History of C++Β What is OOPs OOPs details Structure Vs OOPs
Chapter 2: Fundamental of C++Β Variables, data types, keywords. Input and output statement
Chapter 3: Decision makingΒ statement Types A) Conditional Statement 1. simple if 2. Nested If 3. Switch B) Looping Statement 1. For loop 2. While loop 3. Do-while Loop
Chapter 4: Operators & CastingΒ 1. Arithmetic 2. Compare 3. Relational 4. Logical 5. Assignment 6. Increment or Decrement operators
Chapter 5: Encapsulation & AbstractionΒ Implementation of Access specifier Private Public Protected
Chapter 6: PolymorphismΒ Intro polymorphism Types 1. overloading 2. overriding
Chapter 7: Inheritance vs CompositionΒ Intro Inheritance Types 1. single 2. multiple 3. multi-level 4. Hybrid
Chapter 8: ConstructorΒ Intro constructor Constructor with overloading Destructor
Chapter 9: FilesΒ Iostream vs fstream Creating file step File accessing mode
Chapter 10: Exception HandlingΒ Type of error Exception handling function 1. try 2. catch 3. throw
Sample Video