The ________ returns one value if a condition is true and another value if a condition is false
Fill in the blank(s) with correct word
if OR If OR IF
Computer Science & Information Technology
You might also like to view...
With the growing popularity of tablet computing and increasingly powerful smartphones, mobile computing has experienced moderate growth
Indicate whether the statement is true or false
Computer Science & Information Technology
What is the output of the following code fragment?
int f1(int base, int limit)
{
if(base > limit)
return -1;
else
if(base == limit)
return 1;
else
return base * f1(base+1, limit);
}
int main()
{
cout << f1(2,4)<
Computer Science & Information Technology