What happens when you attempt to compile and run the following code?

What happens when you attempt to compile and run the following code?
#include using namespace std;
int op(int x, int y);
int main()
{ int i=2, j=2, k; float f=0.3; k = op(i, j); cout<< k << "," << op(1, f); return 0; } int op(int x, int y) { return x+y; } A. It prints: 4,1
B. It prints: 4,0.7
C. It prints: 4,0
D. It prints: 0,4

Download Printable PDF. VALID exam to help you PASS.

Posted in: CPA

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.