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
2 months agoNadine
24 days agoLorrie
1 months agoYuette
2 months agoCarrol
14 days agoWillis
1 months agoMelodie
1 months agoFelix
1 months agoCoral
2 months agoAshton
2 months agoVincent
1 months agoElly
2 months agoEvette
2 months agoVivienne
2 months agoCory
2 months agoVivienne
2 months ago