The cores of various programming languages are similar, some even have the same features.
Keywords:
Data Type, Operators, Flow Control, Functions, Object-Oriented, Compiling
- BigInt (BIG INTEGERS) in C++ with Example - In C/C++,
long long int
can save numbers with less than 20 digits, but if the problem is to save a number with 22 digits, which is not feasible with any type of primitive data. Therefore, to address such issues, we need to design a new data type calledBigInt
.
- Fundamental Concepts of Object Oriented Programming - The video states some basic concepts about Object-oriented Programming (OOP)