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
Explain concurrency with aop?
Can a class have multiple constructors c#?
What is double c#?
What is the difference between an integer and int?
how to compare numbers and dispaly the largest ? *first thing I wanted to do is to input how many numbers to be compared *and then analyzed the largest then display it.
What is a web service in c#?
What are strong name assemblies?
What is ilasm.exe used for?
What is a static property. Give an example?
What is trim in c#?
What are the types of constructors?
What is property c#?
What are get and set in c#?
Is list passed by reference c#?
Is string nullable in c#?