Find out the output of the given program or error if any.
int main()
{
void swap(int,int);
int a=10, b=20;
swap(a,b); //Line 6
printf(%d,%d,a,b);
getch();
}
void swap( int x, int y) //Line 9
{
int temp=x; x=y; y=temp;
}
Reveal answer
Fill a bubble to check yourself