write a c programs to do multiplication of two numbers with
out using arithmatic operator ??????????
Answer Posted / mugdha
#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 ? | 12 Yes | 19 No |
Post New Answer View All Answers
What is unary operator?
Why are algorithms important in c program?
Is void a keyword in c?
Explain what will the preprocessor do for a program?
Explain 'far' and 'near' pointers in c.
Explain about block scope in c?
What is spaghetti programming?
How can I avoid the abort, retry, fail messages?
What is null in c?
Can a local variable be volatile in c?
Difference between constant pointer and pointer to a constant.
How main function is called in c?
What is hashing in c?
Where is c used?
What is the difference between far and near in c?