wtite a program that will multiply two integers in recursion
function
Answer Posted / matloob
void main()
{
int a,b,c;
c=a*b;
getch
}
| Is This Answer Correct ? | 3 Yes | 17 No |
Post New Answer View All Answers
What are the back slash character constants or escape sequence charactersavailable in c?
What is the difference between %d and %i?
What is the use of linkage in c language?
How do you determine a file’s attributes?
List the different types of c tokens?
What are the restrictions of a modulus operator?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Do you know the use of 'auto' keyword?
Explain the use of 'auto' keyword in c programming?
How many types of errors are there in c language? Explain
What is the meaning of && in c?
What does %2f mean in c?
What is a 'null pointer assignment' error?
Is stack a keyword in c?
What is a keyword?