Write a C program to multiply tho numbers without using
arithmetic operator (+, -, *, /).
Answer / taz
int a=5,b=2,c,i,j;
for(i=1;i<=a;i++)
for(j=1;j<=b;j++)
c++;
printf("%d",c);
| Is This Answer Correct ? | 5 Yes | 1 No |
How can I increase the allowable number of simultaneously open files?
Can you pass an entire structure to functions?
What is exit() function?
what is call by value and call by reference
What is the value of c?
How to implement a packet in C
What are the advantages of c preprocessor?
What is dynamic memory allocation?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What tq means in chat?
What is a wrapper function in c?
How will you allocate memory to double a pointer?