write a c programs to do multiplication of two numbers with
out using arithmatic operator ??????????
Answer Posted / vinay
#include<stdio.h>
#include<conio.h>
void main()
{int i, j ,num1,num2;
printf("enter the value of num1 & num2");
scanf("%d%d",&num1,&num2);
for(i=1; i<=num1; i++)
for(j=1;j<=num2;j++)
{static int k=1;
k++;
)printf("%d\n",k);}
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
How is null defined in c?
Explain the use of fflush() function?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are the 4 types of functions?
what is the structure pointer?
code for find determinent of amatrix
can anyone suggest some site name..where i can get some good data structure puzzles???
What is #define in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Combinations of fibanocci prime series
Are there constructors in c?
Explain how do you print an address?
What is the significance of an algorithm to C programming?
Do you know the difference between malloc() and calloc() function?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if