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
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What is wild pointer in c?
What are the types of bitwise operator?
What is the purpose of sprintf?
Why header file is used in c?
What is pivot in c?
What is the use of #define preprocessor in c?
Explain what is dynamic data structure?
Explain how do you print only part of a string?
What is the benefit of using an enum rather than a #define constant?
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
Differentiate between the expression “++a” and “a++”?
What is the c language function prototype?
How is a pointer variable declared?
code for quick sort?