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
Why is void main used?
What happens if you free a pointer twice?
Define and explain about ! Operator?
What is sizeof array in c?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Is exit(status) truly equivalent to returning the same status from main?
How can I manipulate individual bits?
How many bytes are occupied by near, far and huge pointers (dos)?
praagnovation
What are examples of structures?
Explain what is wrong with this program statement? Void = 10;
What are called c variables?
Explain output of printf("Hello World"-'A'+'B'); ?
what do u mean by Direct access files? then can u explain about Direct Access Files?