#include<iostream.h>
#include<conio.h>
class array
{
public: void readarray();
void multiply();
};
void array::readarray()
{
int a[10];
cout<<"Enter the elements of the Array"<<endl;
for(int i=0;i<=9;i++)
cin>>a[i];
}
void array::multiply()
{
int i,j,a[10],temp[10];
for(i=0;i<=9;i++)
{
for(j=0;j<=9;j++)
temp[i]=(a[i]*10);
}
cout<<"Result are as follows"<<endl;
for(j=0;j<=9;j++)
cout<<temp[j]<<endl;
}
void main()
{
array mul;
clrscr();
mul.readarray();
mul.multiply();
getch();
}
Not Satisfied ? Just search & get the result
Related posts:

{ 2 comments… read them below or add one }
C++ program using class – To multiply by 10 to every member of a list is good article
dear brother, your c programming articles very useful to me.. thanks a lot