Posts

Showing posts with the label CppProgramming

For Loop Explained | C++ Programming Tutorials in Hindi/Urdu

Image

Nested if - Else if | C++ Programming Tutorials in Urdu/Hindi

Image

If Else Statement in Hindi/Urdu | Even Odd simple program C++

Image

C++ Projects Ideas

Image
There are some projects of C++.You can download this through given link below.                                                                       Download Now

Switch Statement | C Programming Tutorials in Hindi/Urdu

Image

Data Types & Variables | C++ 2nd Tutorial in Hindi/Urdu

Image

C++ Programming Basics & Intro | 1st Tutorial in Hindi/Urdu

Image

1st Tutorial

Basics Header Files : There are several header files. #include<iostream> is input output stream header files in which cout & cin functions are stored.I will discuss about more header files in my tutorials like #include<conio.h>, #include<math.h> etc. # means pre-process (process before compilation) headerfiles are always write on the top. Namespace std: We write "using namespace std;" to tells the compiler to use standard namespace.if you not write this after headerfiles then you will write it before every cout functions or some else.This saves our time if we write it after headerfiles.  Cout: cout is a function to display something on the black screen after debugging.syntax is  cout<<"Your Message";  Every thing in inverted commas be shown on black screen.if you just missed a ; there will be error.Variables will be discussed in our next lecture. Return 0: Return 0; terminates the main() function and causes it to ...