Introduction to C++

The c++ programming language was developed at AT&T  (American Telephone & Telegraph) Bell laboratories in early 1980s by Bjarne Stroustrup. This language is considered as an extension of C since it has some additional and advantageous features. It is also known as “C with Classes”.

1 WHAT IS C++?

2 USES OF C++

3 C++ FEATURES

4 C++ PROGRAM

4.1 Related Posts

WHAT IS C++?

C++ is a general-purpose, case-sensitive, free-form programming, middle level ( between high level and low level ) language that supports procedural, object-oriented, and generic programming.

USES OF C++

C++ is a general-purpose programming language and widely used nowadays for competitive programming. In today’s world also c++ is used in many ways such as Games, Animations, Database, Web-browser, Media, compilers etc.

C++ FEATURES

C++ is a valuable language that comes up with a large number of features described in the following points.

  • It is a strong Compilation Based and Syntax Based language
  • It supports all features of object-oriented programming(OOPS).
  • It is a Case Sensitive language.
  • It is a SimplePowerful and fast language.
  • It is an platform-independent language i.e it can execute on any operating system.
  • Code is Portable

C++ PROGRAM

The other detailed information about the mini-program will be given in the next chapters.

If You liked my follow me on my profile to get latest post by me.

Related Posts

  • Introduction To Java ProgrammingEvolution Of Programming Language Fortran(Assembler Based), a formula translation was developed in 1957.Algol (Assembler Based), algorithm based was developed in 1960.BCPL (Assembler Based), basic combine…
  • Practical Application of Python Programming LanguageThere are lots of practical application of python programming language in variety of field such as Internet Of Things(IOT), web development, machine learning and list…
  • Basics of C++ Programming LanguageBASICS Just like all languages c++ also have a well-maintained set of characters, symbols, integers, etc. CHARACTER SET It is defined as a set of…
  • Understanding the Programming language Concept with exampleUNDERSTANDING PROGRAMMING Let’s take a look at our very first program and discuss all the things about it: // first program #include <iostream.h> int main()…
  • Object Oriented Programming(OOPS) in C++There are two common programming methods: Procedural programming Object-oriented programming (OOP) Procedural Programming A program in a procedural language is a list of instructions, which…