C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 55 Topic 6 Discussion

C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 55 Topic 6 Discussion

CPA-21-02 Exam Topic 6 Question 55 Discussion:
Question #: 55
Topic #: 6

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

#include

using namespace std;

int op(int x, int y);

int main()

{

float *pf;

float f=0.9;

pf=&f;

cout << op(1, *pf);

return 0;

}

int op(int x, int y)

{

return x*y;

}


A.

It prints: 0


B.

It prints: 0.5


C.

It prints: 1


D.

It prints: ?1


Get Premium CPA-21-02 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.