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

Who developed c language and when?

826


Explain what is the stack?

842


What is the size of a union variable?

797


How can I write a function that takes a format string and a variable number of arguments?

836


What are the primitive data types in c?

781


What is an expression?

845


What is variable and explain rules to declare variable in c?

793


What is a pointer value and address in c?

823


Implement bit Array in C.

890


Can we replace the struct function in tree syntax with a union?

1019


Explain the advantages of using macro in c language?

768


What is sorting in c plus plus?

748


Explain what is the difference between text files and binary files?

867


Describe static function with its usage?

875


A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers

882