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

How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

829


What is wild pointer in c?

812


What are the types of bitwise operator?

859


What is the purpose of sprintf?

827


Why header file is used in c?

790


What is pivot in c?

769


What is the use of #define preprocessor in c?

841


Explain what is dynamic data structure?

899


Explain how do you print only part of a string?

938


What is the benefit of using an enum rather than a #define constant?

949


The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none

984


Differentiate between the expression “++a” and “a++”?

1001


What is the c language function prototype?

866


How is a pointer variable declared?

799


code for quick sort?

1827