Posts

Showing posts from March, 2024

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...