C++ crash course in 3 hrs [Urdu/Hindi]

Опубликовано: 24 Март 2026
на канале: Renzym Education
2,516
64

#cplusplusprogramming #programming #objectorientedprogramming
In this video I have combined some course review sessions into one video that covers/reviews object oriented programming using C++. Intended audience is people who want to revise stuff for qualifiers or interviews in short time, self paced learners who do not have time to watch complete 16 weeks course and lazy students who want to cover everything last night before exam

It would be a good idea to try writing these codes in parallel. So here is a video on installing visual studio community edition. I will recommend choosing latest community edition (e.g. at the time of upload search for 2019 instead of 2017, hopefully there will be very few differences in other steps)
   • Visual Studio Community Edition Installati...  

Most of example codes are from Robert Lafore's book "Object oriented programming in C++"

Jump to relevant sections by clicking time tag below:

(0:00) cin, cout and data types
(16:43) Arithmetic Operations, / and % operators
(27:39) if-else statements
(44:09) Loops: while, for, do while()
(53:23) Functions. static, const, pass by reference
(1:12:50) Classes. public and private members, constructors and destructors
(1:37:08) Arrays
(1:51:34) C++ Strings and various related functions
(1:59:18) Operator Overloading
(2:04:25) C++ Inheritence, Multiple Inheritance, Public Private Inheritance
(2:27:19) Pointers. Array of pointers.
(2:37:00) Runtime memory allocation using new and delete
(2:49:15) Polymorphism. Virtual functions, pure virtual functions,
(2:58:44) this pointer, friend functions and classes
(3:05:37) File I/O: Writing and reading text files.
(3:09:12) File I/O: Writing and reading binary files
(3:23:55) seekg, tellg, seekp, tellp functions examples and error handling