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();
}

No comments:

Post a Comment