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


Please Help Members By Posting Answers For Below Questions

Explain what is #line used for?

832


What are the scope of static variables?

870


What is getche() function?

843


When a c file is executed there are many files that are automatically opened what are they files?

854


How can I pad a string to a known length?

820


What is advantage of pointer in c?

945


What is the collection of communication lines and routers called?

898


What is meant by type casting?

855


What is use of pointer?

823


Why main is used in c?

855


in linking some of os executables are linking name some of them

1931


What is wild pointer in c with example?

834


What is the difference between abs() and fabs() functions?

893


What is keyword with example?

854


What are identifiers and keywords in c?

812