Answer Posted / shanker
int numberfactorial(int number)
{
if (number == 1) {
return number;
}
else {
return number * numberfactorial(number - 1);
}
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is threading in c# with example?
What does out mean in c#?
Explain About Global.asax
What is the difference between the debug class and trace class? Documentation looks the same.
What is hash c#?
What is uint64_t?
what is method overloading in c#?
Can we declare class as protected?
What does exclamation mark mean c#?
What is xaml file in c#?
What are handlers in c#?
What is datasource c#?
How many constructor can a class have?
Explain the difference between abstract class and interface.
Is arraylist thread safe?