What is the output of the following program?
#include<iostream.h>
void swap(int m, int n)
{
int x= m;
m = n;
n = x;
}
void main(void)
{
int x = 5, y = 3;
swap(x,y);
cout<< x<<"-"<< y;
}
Answers
Answered by
18
Answer:
I am not understanding ur question dear
Similar questions
Math,
4 months ago
Biology,
8 months ago
Math,
8 months ago
English,
11 months ago
World Languages,
11 months ago