write a c programs to do multiplication of two numbers with
out using arithmatic operator ??????????
Answer Posted / vinay
#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 ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is c basic?
What is modeling?
What is data structure in c and its types?
What are the uses of a pointer?
what is the different bitween abap and abap-hr?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
What is a structural principle?
Why dont c comments nest?
Are the variables argc and argv are local to main?
What is an identifier?
difference between object file and executable file
What is dangling pointer in c?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What is unsigned int in c?
How can you find the day of the week given the date?