Consider the following function definition. void strange (int& u, char& ch) { int a; a = u++; u = 2 * u; a = static_cast (ch); a++; ch = static_cast (a); } What are the values of one and letter after the following statements execute? int one = 5; char letter = 'A'; strange (one, letter);
+5
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Consider the following function definition. void strange (int& u, char& ch) { int a; a = u++; u = 2 * u; a = static_cast (ch); a++; ch = ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » Consider the following function definition. void strange (int& u, char& ch) { int a; a = u++; u = 2 * u; a = static_cast (ch); a++; ch = static_cast (a); } What are the values of one and letter after the following statements execute?