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
Explain the difference between getch() and getche() in c?
Explain how do you list a file’s date and time?
What is volatile variable how do you declare it?
Differentiate fundamental data types and derived data types in C.
What are the different types of endless loops?
what is the format specifier for printing a pointer value?
Compare array data type to pointer data type
What is difference between structure and union?
Explain 'bit masking'?
What are the functions to open and close file in c language?
What are the basic data types associated with c?
What is "Hungarian Notation"?
Can you tell me how to check whether a linked list is circular?
Why c is a procedural language?
How can I open a file so that other programs can update it at the same time?