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
Explain how many levels deep can include files be nested?
What is hashing in c language?
Do you know the use of 'auto' keyword?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Is null always defined as 0(zero)?
What is #ifdef ? What is its application?
How to write c functions that modify head pointer of a linked list?
What are all different types of pointers in c?
What is the difference between exit() and _exit() function in c?
What is the use of extern in c?
What is function prototype?
Can true be a variable name in c?
What is .obj file in c?
How can I read data from data files with particular formats?
how can I convert a string to a number?