wtite a program that will multiply two integers in recursion
function
Answer Posted / der
#include<iostream.h>
void main()
{clrscr();
int x,y,sum;
sum=x+y;
cout<<sum;
getch();
}
| Is This Answer Correct ? | 0 Yes | 9 No |
Post New Answer View All Answers
What is meant by initialization and how we initialize a variable?
What is the most efficient way to store flag values?
The file stdio.h, what does it contain?
How can I recover the file name given an open stream or file descriptor?
What is the symbol indicated the c-preprocessor?
What does malloc () calloc () realloc () free () do?
Do you know the use of fflush() function?
What are the usage of pointer in c?
How can you avoid including a header more than once?
What are the advantages of the functions?
What are structure types in C?
How do you define a function?
What is the value of h?
Write a program to show the change in position of a cursor using c
What does volatile do?