Posts
Showing posts with the label CppProgramming
Nested if - Else if | C++ Programming Tutorials in Urdu/Hindi
- Get link
- X
- Other Apps
If Else Statement in Hindi/Urdu | Even Odd simple program C++
- Get link
- X
- Other Apps
Switch Statement | C Programming Tutorials in Hindi/Urdu
- Get link
- X
- Other Apps
Data Types & Variables | C++ 2nd Tutorial in Hindi/Urdu
- Get link
- X
- Other Apps
C++ Programming Basics & Intro | 1st Tutorial in Hindi/Urdu
- Get link
- X
- Other Apps
1st Tutorial
- Get link
- X
- Other Apps
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 ...