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
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the difference between printf and scanf in c?
What are the advantages and disadvantages of c language?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is the modulus operator?
What are keywords c?
Can a local variable be volatile in c?
Write a program to print fibonacci series without using recursion?
Which type of language is c?
State two uses of pointers in C?
what are the different storage classes in c?
Is main a keyword in c?
What is keyword in c?
What are the similarities between c and c++?
Write a code to generate divisors of an integer?