Posts

SYNTAX OF C++

Image
 SYNTAX OF C ++  C++ is a object oriented programming language that works on framework and structure which provide it stability and easier to use. every language has its own syntax, and each works based on its syntax. syntax basically means some the guidelines regarding passing(writing)statements in a programming language.  As I said before every programming language has its own syntax C++ also has its syntax based on its functions and workings.   SYNTAX OF C++ Let's deep dive.  1.#INCLUDE<IOSTREAM.H>  Firstly, #include is a preprocessing directive trough which we can import the header file from library.  The following statement i.e. #include tells the compiler to include the header file which is <iostream> from the library which initially stores the methods of Cin and Cout which we use for taking input and processing it towards output.  where iostream means standard input output stream which is a oops library which provides input...

LET'S START WITH C++

 C++ This is an object-oriented programming language which is an extension of c language. C++is a high-level programming language which was developed by "Bjarne Stroustrup". This language allows user orderly code for big and small applications. This language allows user to develop the code for game development, software development etc. Through this tutorial we will learn C++ from basic and step by step we will head towards advanced C++ language. what is C++?  C++ is a high-level programming language which is used to develop large  applications. This is prominently used for game development, software development it is also used for graphical user interface. It's an object-oriented programing language that implies that all oops concept  i.e. Abstraction, Encapsulation, and Inheritance which gives a framework to the programs. It's easier to understand as compared with other programming languages.    Which one to learn c or C++? B...