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
Explain what is #line used for?
What are the scope of static variables?
What is getche() function?
When a c file is executed there are many files that are automatically opened what are they files?
How can I pad a string to a known length?
What is advantage of pointer in c?
What is the collection of communication lines and routers called?
What is meant by type casting?
What is use of pointer?
Why main is used in c?
in linking some of os executables are linking name some of them
What is wild pointer in c with example?
What is the difference between abs() and fabs() functions?
What is keyword with example?
What are identifiers and keywords in c?