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
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is c language & why it is used?
Write a code to generate divisors of an integer?
What are the types of data types and explain?
Why is structure padding done in c?
How important is structure in life?
Why do we use & in c?
Why is it that not all header files are declared in every C program?
What is array of pointers to string?
Why double pointer is used in c?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Why c is a mother language?
What are the types of macro formats?
Explain pointer. What are function pointers in C?