Access modifiers are used to implement an important aspect of OOP known as Data Hiding. There are three types of...
Continue reading...Learn2Done
C++ Class
Class : Class is a user defined data type, which holds its own data members and member functions, which can...
Continue reading...C++ Object
Object : An object is an instance of a class. When a class is defined, no memory is allocated but...
Continue reading...C++ OOPs
OOP : Object Oriented Programming. Object Oriented Programming aims to implement real world entities like inheritance, hiding, polymorphism, etc. ,...
Continue reading...C++ FEATURES
Features of C++ are : – -Simple -Portable -Mid-Level -Structure -Rich Library -Object Oriented -Recursion -Pointers -Compiler Based -Speed -Extensible...
Continue reading...C++ SYNTAX
#include<iostream> using namespace std; void main() { cout<<"Learn2Done" } Explanation of above syntax: #include<iostream>: It is a header file library...
Continue reading...C DATATYPES
Datatypes are used for declaring variables and functions of different types. The type of a variable determines how much much...
Continue reading...C TOKENS
Token in C is the most important element to be used in creating a program in C. The token in...
Continue reading...C COMMENTS
Comments are hints that a programmer adds within its code so other person who looks at the code can understand...
Continue reading...C KEYWORDS
Keywords in c can be defined as reserved words or pre-defined or pre-defined words having their own importance and each...
Continue reading...