C++

C++ STRINGS

#include<iostream> using namespace std; void main() { cout<<"Learn2Done" } Explanation of above syntax: #include<iostream>: It is a header file library...

Continue reading...

C++ OOPs

OOP :  Object Oriented Programming. Object Oriented Programming aims to implement real world entities like inheritance, hiding,  polymorphism, etc. ,...

Continue reading...