Consider the function definition void Demo (int& intVal, float floatVal) { intVal = intVal * 2; floatVal = float (intVal) + 3.5; } Suppose that the caller has variables myInt and myFloat whose values are 20 and 4.8, respectively. What are the values of myInt and myFloat after return from the following function call? Demo (myInt, myFloat);
+4
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Consider the function definition void Demo (int& intVal, float floatVal) { intVal = intVal * 2; floatVal = float (intVal) + 3.5; } Suppose ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Consider the function definition void Demo (int& intVal, float floatVal) { intVal = intVal * 2; floatVal = float (intVal) + 3.5; } Suppose that the caller has variables myInt and myFloat whose values are 20 and 4.8, respectively.