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


Please Help Members By Posting Answers For Below Questions

Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

2135


What is the difference between printf and scanf in c?

1036


What are the advantages and disadvantages of c language?

791


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

2133


What is the modulus operator?

961


What are keywords c?

815


Can a local variable be volatile in c?

785


Write a program to print fibonacci series without using recursion?

861


Which type of language is c?

857


State two uses of pointers in C?

855


what are the different storage classes in c?

914


Is main a keyword in c?

863


What is keyword in c?

807


What are the similarities between c and c++?

833


Write a code to generate divisors of an integer?

843