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
Does c have circular shift operators?
what is the basis for selection of arrays or pointers as data structure in a program
What the advantages of using Unions?
The statement, int(*x[]) () what does in indicate?
Why is c called a mid-level programming language?
What is extern variable in c with example?
How is actual parameter different from the formal parameter?
What is the size of a union variable?
Do you know what are the properties of union in c?
Is printf a keyword?
What is a scope resolution operator in c?
Can a variable be both const and volatile?
Can a pointer be volatile in c?
How do you sort filenames in a directory?
What is pass by value in c?