CI
C++ Certified Associate Programmer
219 Questions
Question No. 1
What will be the output of the program?
#include <iostream>
using namespace std;
int fun(int);
int main()
{
cout << fun(5);
return 0;
}
int fun(int i)
{
return i*i;
}
Choose the correct option from the given list.
01 / 219