Ask Question
29 April, 05:51

Given the function prototype:

bool IsGreater (int, int);

Which of the following statements is not a valid call to the IsGreater function? (The data types of the variables are suggested by their names.)

a) for (i = 0; i++, IsGreater (inputInt, i))

dosomething;

b) someBoolean = IsGreater (someInt, 8);

c) if (IsGreater (5, someInt))

intCounter++;

d) while (IsGreater (inputInt, 23))

cin >> inputInt;

+5
Answers (1)
  1. 29 April, 08:43
    0
    a) for (i = 0; i++, IsGreater (inputInt, i))

    dosomething;

    Explanation:

    The for loop statement is incorrect.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Given the function prototype: bool IsGreater (int, int); Which of the following statements is not a valid call to the IsGreater function? ...” 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.
Search for Other Answers