Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » BeginnersRSS Feeds

Beginning With C++

Posted By: Gabriel Brown     Category: C++ Programming     Views: 2330

This article explains about basic of c++ programming.

What Is C++

  • Bjarne Stroustrup at AT & T Bell labs in early eighties developed it (C with Classes!)
  • It is an extension of C with major addition of class construct, that’s why C++(++ is extension!)
  • C++ is a superset of C ignoring few minor issues
  • Function overloading and operator overloading 
  • Above enables one to create abstract data types, inherit properties, and support polymorphism
  • It supports OO paradigm to a large extent
  • Use of //, /* */, for comments
  • Output with cout and << (insertion or put to op) 
  • The identifier cout is a predefined object that represents the stdout in c++
  • Cin is stdin in C++and >> is an extraction or get from operator
  • The iostream.h file contains declarations for cout cin << and >>
  • The return 0 or void main is must now

Classes and Structures

  • Cascading IO operations like cout << “Sum” << sum << ‘\n’ & cin << no1 << no2 is possible
  • Classes and member functions and the :: operator
  • Private and public keywords
  • Structure is the same but can be extended to represent a class
  • Definition of functions inside and outside of class body
  • .cpp, .C or .cc extensions

  
Share: 


Didn't find what you were looking for? Find more on Beginning With C++ Or get search suggestion and latest updates.

Gabriel Brown
Gabriel Brown author of Beginning With C++ is from London, United Kingdom.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!