Showing posts with label turbo c. Show all posts
Showing posts with label turbo c. Show all posts

Thursday, 11 May 2017

C++ tutorials in Hindi / Urdu [09] if - else condition


    Relational Operators  and conditional statements in c++.

part 9


WatchOnYoutube

Source Code

#include<constream.h>
#include<iomanip.h>
void main(){
clrscr();
   
     // Relational Operators and conditional statement
    if(10<5)
       cout<<"10 is less than 5"<<endl;


    if(10>5)
       cout<<"10 is greater than 5"<<endl;

    if(10!=5)
       cout<<"10 is not equal to 5"<<endl;
    if(10<=5)
       cout<<"10 is less than or equal to 5"<<endl;
    if(10>=5)
       cout<<"10 is greater than or equal to 5";

getch();
}


Tuesday, 2 May 2017

C++ Tutorials for Beginners (Hindi/Urdu) 08

C++ C++ Tutorial [08]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

#include<constream.h>
#include<iomanip.h>
void main(){
clrscr();
   
     // MANIPULATORS 
    char name[]="hel";
   
    cout<<name<<endl;
    cout<<setw(5)<<name<<endl;
    
    cout<<setprecision(2)<<22.777;
    
   
   
getch();
}

C++ Tutorials for Beginners (Hindi/Urdu) 07

C++ C++ Tutorial []

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.



Code:

#include
void main(){
clrscr();
   
     //ESCAPE SEQUENCE 
    
    cout<<"hellow \n world";
    cout<<"hellow \t world";
    cout<<"hellow \a world";
    cout<<"hellow \' world \'";
   
getch();
}


C++ Tutorials for Beginners (Hindi/Urdu) 06

C++ C++ Tutorial [06]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 05

C++ C++ Tutorial []

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 04

C++ C++ Tutorial [04]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 03

C++ Tutorial [03]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 02

C++ Tutorial [02]

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.

C++ Tutorials for Beginners (Hindi/Urdu) 01

C++ Tutorials in Urdu [01]

Watch Full course On YouTube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our YouTube Channel and subscribe ..Thanks.



Source Code



boolStores  true or false.
charstores single character
intThe most natural size of integer for the machine.
floatA single-precision floating point value.
doubleA double-precision floating point value.
voidRepresents the absence of type.


Monday, 1 May 2017

C++ Tutorials [Hindi/Urdu]- intro

C++ Course Introduction

Watch Full course On Youtube :

This course starts from basic concepts to most advanced concepts all the videos are in HD and free
post your questions in the comments if you have any problem.Also visit Our Youtube Channel and subscribe ..Thanks.