#include<iostream.h>
#include<conio.h>
void disp(int m[5][5]);
void main()
{
clrscr();
int m[5][5],i,j;
cout<<"\n\n";
cout<<"enter elements";
cout<<"\n";
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
cout<<"\n";
cin>>m[i][j];
}
}
disp(m);
getch();
}
void disp(int m[5][5])
{
int i,j;
cout<<"\n\n";
cout<<"nos. divisible by 10 are";
cout<<"\n\n";
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
if(m[i][j]%10==0)
{
cout<<m[i][j]<<"\t";
}
}
}
}
#include<conio.h>
void disp(int m[5][5]);
void main()
{
clrscr();
int m[5][5],i,j;
cout<<"\n\n";
cout<<"enter elements";
cout<<"\n";
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
cout<<"\n";
cin>>m[i][j];
}
}
disp(m);
getch();
}
void disp(int m[5][5])
{
int i,j;
cout<<"\n\n";
cout<<"nos. divisible by 10 are";
cout<<"\n\n";
for(i=0;i<3;i++)
{
for(j=0;j<3;j++)
{
if(m[i][j]%10==0)
{
cout<<m[i][j]<<"\t";
}
}
}
}