write a c programs to do multiplication of two numbers with
out using arithmatic operator ??????????
Answer Posted / dally
#include<stdio.h>
int main()
{
int a=9,b=7;
int sum =0;
while(a--)
sum = sum+b;
printf("%d\n",sum);
}
| Is This Answer Correct ? | 12 Yes | 32 No |
Post New Answer View All Answers
List the difference between a While & Do While loops?
What is structure packing in c?
What is the use of a conditional inclusion statement in C?
Differentiate call by value and call by reference?
Is c still relevant?
How the c program is executed?
Explain how do you list files in a directory?
What is console in c language?
What is a file descriptor in c?
What are the c keywords?
Does free set pointer to null?
Write a program on swapping (100, 50)
Why dont c comments nest?
In which layer of the network datastructure format change is done
What are the different types of control structures in programming?