Computer Science, asked by hassanfayez92, 8 months ago

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 Anonymous
18

Answer:

I am not understanding ur question dear

Similar questions