STACKS in C++WHAT IS STACK? It is a linear data structure and also an abstract data type ,where we can do only operation in a specific manner. It works on the LIFO (last in first out) or FILO (first in last out) system. LIFO means the elements which is inserted l...May 18, 2024·2 min read·13
C++ Programming LanguageWhat is C++ ? It is the most popular programming language also used to create high profile application and software. It was developed by Bjarne Stroustrup. It is also named as the extension of C programming language that's why it is called as C with ...May 6, 2024·14 min read·103
Diverse Engineering Career Options to ExploreHow I think suddenly of this engineering career path? Is there something apart from programming language? Which options suits me? From where I have to search for the tech roles? ROLES MENTION BELOW: Artificial Intelligence And Machine Learning Bloc...May 2, 2024·1 min read·5
VTable and Vptr DemystifiedWHAT IS VTable? It stands for "VIRTUAL TABLE". It is created by the compiler to support dynamic polymorphism. When class contain virtual function, compiler creates VTable for that class. WHAT IS Vptr? It stands for "VIRTUAL POINTER". It is a hidden p...May 1, 2024·1 min read·69
Exploring OOP Fundamentals: Part 4 BreakdownTHIS POINTER Its is a keyword which points to the objects which invokes the member function. It is used for return object. CODE: class A{ int a; public: void setdata(int a){ this->a=a; } void getdata(){ cout<<"the...Apr 30, 2024·2 min read·20
C++ OOPS: PART 3 OverviewPOLYMORPHISM It means single things existing in multiple forms. Real life example: A boy can be someone's brother or son or father or husband. \*Function Overloading* Function name same, argument lists are different. CODE: class A public: vo...Apr 30, 2024·3 min read·16