M
Q. Output of following program?
#include <iostream>
using namespace std;
int fun(int=0, int = 0);
int main()
{
cout << fun(5);
return 0;
}
int fun(int x, int y)
{
return (x+y);
}
Related MCQs
Q. Which of the following is non-liner data structure?
Q. The efficient searching algorithm for algorithm for a sorted array is _________.
Q. If a process fails, most operating system write the error information to a ______
Q. How many phases are there in Scrum?
Q. Which layer is responsible for process to process delivery in a general network model?
Q. Which of the following is a predictive model?
Q. Another solution to the problem of external fragmentation problem is to
Q. In an HDL application of a stepper motor, what is done next after an up/down counter is built?
Q. What is the full form of USB as used in computer related activities?
Discusssion
Login to discuss.