Template Argument deduction is the ability of the template class to automatically deduce the type without specifying it. In order
Category: C++
Structured Bindings
Direct Initialization-Tutorial The direct initialization of the variables can be done using the keyword auto in C++17. In this section,
Practical C++ 17 features
I am going to write about the practical C++17 features and how to use them in our day to day
Bracket matching using stack
Bracket matching using stack. A bracket is considered to be any one of the following characters: (, ), {, }, [, or ]. Two brackets are
Find Pair With Given Sum
Finding the pair with a given sum a C++ solution for the question asked in the Amazon interview mentioned in
Introductory tutorial on g++: Getting started
g++ GNU C++ compiler is a compiler in Linux which is used to compile the C++ programs. It compiles .c
Formula dependency detection algorithm
Question: Take a set of formulas and order them based on their dependencies. If they are cyclic in nature Exit
Inheritance in C++
Inheritance lets one object acquire the properties of another object. It makes possible that an object can be a specific
Abstraction in C++
Abstraction is displaying the essential details and hiding the ones which are not needed. Hides the unnecessary details to the