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
application attempts to perform an operation?
What is the explanation for prototype function in c?
Is int a keyword in c?
What are the disadvantages of c language?
What is the difference between memcpy and memmove?
Explain what is a program flowchart and explain how does it help in writing a program?
how to capitalise first letter of each word in a given string?
Why is this loop always executing once?
Which type of language is c?
What is the size of structure in c?
p*=(++q)++*--p when p=q=1 while(q<=6)
find the sum of two matrices and WAP for it.
What is an expression?
How will you find a duplicate number in a array without negating the nos ?
Can two or more operators such as and be combined in a single line of program code?