C++ is a middle-level programming language developed at AT&T Bell Laboratories in 1979 by Bjarne Stroustrup.C++ can be called as extension C or we can even say C++ is superset of C .
C++ is Object Oriented Programming language with general OOP Concepts like
1)Abstraction
2)Encapsulation
3)Modularity
4)Inheritance
5)Polymorphism.
A simple C++ program example:
#include<iostream.h>
using namespace std;
int main()
{
cout<<"Welcome to The Student Network";
return 0;
}
To execute online click here. here.
0 comments:
Post a Comment