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

What is a string?

662


What is multidimensional arrays

624


What would be an example of a structure analogous to structure c?

570


What are register variables? What are the advantage of using register variables?

676


What is int main () in c?

620






What is dangling pointer in c?

618


What do you mean by a sequential access file?

621


What are the differences between new and malloc in C?

604


What are pointers? Why are they used?

627


What is getch () for?

670


What is the difference between formatted&unformatted i/o functions?

610


What is the benefit of using const for declaring constants?

581


What is cohesion in c?

535


How can I call a function with an argument list built up at run time?

631


Difference between strcpy() and memcpy() function?

671