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
Who developed c language and when?
Explain what is the stack?
What is the size of a union variable?
How can I write a function that takes a format string and a variable number of arguments?
What are the primitive data types in c?
What is an expression?
What is variable and explain rules to declare variable in c?
What is a pointer value and address in c?
Implement bit Array in C.
Can we replace the struct function in tree syntax with a union?
Explain the advantages of using macro in c language?
What is sorting in c plus plus?
Explain what is the difference between text files and binary files?
Describe static function with its usage?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers