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
Why c is called a middle level language?
What are reserved words?
Write a program to know whether the input number is an armstrong number.
write a c program for swapping two strings using pointer
What is the usage of the pointer in c?
Describe the modifier in c?
What is d'n in c?
Is javascript based on c?
Why is C language being considered a middle level language?
What is pass by reference in c?
What is a structure and why it is used?
What does. int *x[](); means ?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Write a program to identify if a given binary tree is balanced or not.
What is character set?