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


Please Help Members By Posting Answers For Below Questions

What is include directive in c?

649


Is c dynamically typed?

671


What are the types of type specifiers?

625


What is difference between union and structure in c?

584


Whats s or c mean?

597






What is the value of h?

597


Differentiate Source Codes from Object Codes

827


Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.

4845


What are 3 types of structures?

596


What are examples of structures?

601


What is the difference between char array and char pointer?

528


What is pointers in c with example?

586


What are the rules for the identifier?

677


What are the advantages of using macro in c language?

596


How does placing some code lines between the comment symbol help in debugging the code?

550