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
How will you delete a node in DLL?
How are strings stored in c?
What is meant by int main ()?
Where can I get an ansi-compatible lint?
What is the use of f in c?
What is declaration and definition in c?
What are enumerated types?
Describe dynamic data structure in c programming language?
Why flag is used in c?
Is a house a mass structure?
Why do some versions of toupper act strangely if given an upper-case letter?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is structure and union in c?