i still cant get an out put.. plus cin.get() doent work here.. why?
// to find factorial of a number
#include<iostream.h>
#include<conio.h>
int main()
{
int i,m;
cout<< "enter a number";
cin>> i;
for ( int p=i;p>=0;p--)
{ p=p*(p-1);
p=m;
}
cout << m;
getch();
return(0);
}