Thursday, 11 May 2017
C++ Tutorials for begginners (hindi/urdu) [part 20] - Arrays
#include<constream.h>
#include<iomanip.h>
void main(){
clrscr();
//ARRAYS
int numbers[5];
for(int j=0;j<5;++j)
{
cout<<"plz enter "<<j<<" number"<<endl;
cin>>numbers[j];
}
cout<<"you enterd the following numbers"<<endl;
for(int i=0;i<5;++i)
cout<<numbers[i]<<" ";
getch();
}
Labels:
C++,
c++ full course,
c++ projects,
c++ videos,
cplus,
hindi,
in Urdu
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment