:?: can anyone tell me where the error is?
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
void zero_small(int &,int &);
int a,b;
cout<<"\n\n\n\tEnter the first no ";
cin>>a;
cout<< "\n\n\n\tEnter the second no ";
cin>>b;
zero_small(a,b);
cout<<"\n\n\n\tValue of the first no is "<<a;
cout<<"\n\n\n\tValue of the second no is "<<b;
getch();
}
void zero_small(int& a,int &b )
{
if (a<b)
{a==0; }
else b==0;
return;
}