What happens when you attempt to compile and run the following code?
#include
using namespace std;
int op(int x, int y);
float op(int x, float y);
int main()
{
int i=1, j=2, k;
float f=0.3;
k = op(i, j);
cout<< k << "," << op(0, f);
return 0;
}
int op(int x, int y)
{
return x+y;
}
float op(int x, float y)
{
return x?y;
}
Stefany
Yuette
2 days agoCoral
5 days agoAshton
9 days agoEvette
12 days agoVivienne
13 days agoCory
16 days agoVivienne
21 days ago