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
How many header files are in c?
What does sizeof int return?
What is the function of volatile in c language?
How do you use a 'Local Block'?
Explain about block scope in c?
Write a program that accept anumber in words
How many types of arrays are there in c?
Write a program to generate the Fibinocci Series
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is #line in c?
Is c procedural or object oriented?
Without Computer networks, Computers will be half the use. Comment.
Write a code to generate a series where the next element is the sum of last k terms.
What is structure pointer in c?
What does. int *x[](); means ?