U
Q. What is the output of this program?
#include using namespace std; long fact (long p) { if (p > 1) return (p * fact (p + 1)); else return (1); } int main () { long n = 6; cout << n << "! = " << fact ( n ); return 0; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Following declaration in C++
Q. Which of the following is true?
Q. What is the output of this program?
Q. What is the output of the following program?
Q. Which of the following statement is incorrect?
Q. What will be the output of the following program?
Q. When can we have two classes with same name?
Q. What will be the result of the expression 13 & 25?
Q. In c++ ___________ Operator is used for Dynamic memory allocation
Discusssion
Login to discuss.