Advertisements
Advertisements
Question
Write a program in C++ to find factorial of entered number.
Short Note
Solution
//Program to find factorial of a number
#include<iostream.h>
#include<<conio.h>
void main ( )
{
int fact, number, i;
clrscr ( ) ;
fact = 1;
cout << “Enter the number” <<endl;
cin >> number;
for (i = 1; i < = number; i++)
{
fact = fact*i;
}
cout<< “The factorial of a inputted number is” <<fact;
}
shaalaa.com
C++ Programming
Is there an error in this question or solution?