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
What is data structure in c and its types?
What are the different file extensions involved when programming in C?
What does 3 mean in texting?
cavium networks written test pattern ..
Can 'this' pointer by used in the constructor?
What are the two types of functions in c?
write a program to print largest number of each row of a 2D array
What is the use of header?
What are 'near' and 'far' pointers?
Explain about the constants which help in debugging?
Why do we use namespace feature?
How can you convert integers to binary or hexadecimal?
What are the functions to open and close file in c language?
Explain threaded binary trees?
Why c is called top down?