
Let Us C++
Dive into the nitty-gritties of C++ language and learn why programmers prefer OOPs and C++
- English
- ePUB (mobile friendly)
- Available on iOS & Android
Let Us C++
Dive into the nitty-gritties of C++ language and learn why programmers prefer OOPs and C++
About this book
Highlights Core Features Like Encapsulation, Polymorphism, Inheritance, Virtual Functions, Templates, Exception Handling, STL and more Most best-selling software including MS Office, Internet Explorer, Photoshop, AutoCAD, Google Earth, Firefox etc. are written in C++. So, for anyone who aspires to write good software, C++ has become thelanguage of choice. One has to know the concepts of Object-Oriented Programming and how to use them in C++, to make a mark in the programming world. Let Us C++ teaches you C++ in Yashavant Kanetkar's inimitable style.You would find Let Us C++ easy, yet incredibly thorough. Every discussion is highlighted by clear, direct examples. It will not only serve as your tutorial, but it is likely to be the first thing that you would reach for when faced with a confusing issue. KEY FEATURES⢠Strengthens the foundations, as a detailed explanation of programming language concepts are given. ⢠Lists down all the important points that you need to know related to various topics in an organized manner.⢠Provides In-depth explanation of complex topics.⢠Focuses on how to think logically to solve a problem. WHAT WILL YOU LEARNClasses & Objects, Free Store Management, Stream I/O, References, Virtual Tables and vptr, Templates, Polymorphism, Namespaces, Exception Handling, Inheritance, Smart Pointers, STL WHO THIS BOOK IS FORStudents, Programmers, researchers, and software developers who wish to learn the basics of C++ programming language.AUTHOR BIOYashavant KanetkarThrough his books and Quest Video Courses on C, C++, Java, Python, Data Structures,.NET, IoT, etc. Yashavant Kanetkar has created, molded and groomed lacs of IT careers in the last three decades. Yashavant's books and Quest videos have made a significant contribution in creating top-notch IT manpower in India and abroad.Yashavant's books are globally recognized and millions of students/professionals have benefitted from them. Yashavant's books have been translated into Hindi, Gujarati, Japanese, Korean and Chinese languages. Many of his books are published in India, USA, Japan, Singapore, Korea and China.Yashavant is a much sought after speaker in the IT field and has conducted seminars/workshops at TedEx, IITs, IIITs, NITs and global software companies.Yashavant has been honored with the prestigious "Distinguished Alumnus Award" by IIT Kanpur for his entrepreneurial, professional and academic excellence. This award was given to top 50 alumni of IIT Kanpur who have made a significant contribution towards their profession and betterment of society in the last 50 years. In recognition of his immense contribution to IT education in India, he has been awarded the "Best.NET Technical Contributor" and "Most Valuable Professional" awards by Microsoft for 5 successive years.Yashavant holds a BE from VJTI Mumbai and M.Tech. from IIT Kanpur. Yadhavant's current affiliations include being a Director of KICIT Pvt Ltd. And KSET Pvt Ltd. His Linkedin profile: linkedin.com/in/yashavant-kanetkar-9775255
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
1
Introduction To OOP
- The BeginningâŚ
- Structured Programming
- Object Oriented Programming
- Characteristics of Object Oriented Languages ObjectsClassesEncapsulationData hidingInheritancePolymorphismContainershipTemplatesException handlingReusability
- Exercise
- KanNotes
The BeginningâŚ
- There were no facilities to reuse existing program code. Wherever the same piece code was required, it was simply duplicated.
- The control of execution within a program was transferred via the dangerous goto statement. As a result, there was too much jumping around in the program, often without any clear indication of how, where and why the control is flowing.
- All variables in the program were global. Tracking down spurious changes in global data in long convoluted programs was a very tedious job.
- Writing, understanding and maintaining long programs became a programmer's nightmare.
Structured Programming
- Reuse of existing program code - Wherever the same piece code is required at multiple places in a program, the function containing that code is used. As a result, there is no need to repeat the same code at multiple places.
- Excessive use of goto statement - The excessive use could be minimized with the introduction of powerful control instructions that could transfer the control within the program in an easy-to- understand manner.
- Unexpected changes in global variables - With introduction of functions, need for global variables got minimized.
- Complexity of programs - Complexity became more manageable as structured programming permitted better organization of the program.

- The primary components of structured programmingâfunctions and data structuresâdidn't model the real world problems in a natural way.
- Mechanisms to reuse existing code were limited.
- Maintaining, debugging and upgrading large programs were a difficult task.
Object Oriented Programming

Table of contents
- Cover Page
- Title Page
- Copyright Page
- Dedication
- About the Author
- Acknowledgement
- Table of Contents
- Preface to Third Edition
- Preface to First Edition
- 1 Intro to OOP
- 2 Graduating to C++
- 3 Functions
- 4 Classes and Objects
- 5 Class Intricacies
- 6 Inheritance
- 7 Polymorphism
- 8 Input / Output in C++
- 9 Advanced Features of C++
- 10 Templates
- 11 Exception Handling
- 12 Standard Template Library
- Index