Write a C program to multiply tho numbers without using
arithmetic operator (+, -, *, /).
Answer Posted / taz
int a=5,b=2,c,i,j;
for(i=1;i<=a;i++)
for(j=1;j<=b;j++)
c++;
printf("%d",c);
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Suggesting that there can be 62 seconds in a minute?
What does d mean?
What is typeof in c?
What is the best way of making my program efficient?
What is #line?
Write a program to print "hello world" without using a semicolon?
Is it valid to address one element beyond the end of an array?
What does typedef struct mean?
What are the advantages and disadvantages of pointers?
Are negative numbers true in c?
can we have joblib in a proc ?
Explain the difference between ++u and u++?
What does s c mean on snapchat?
What is #include cctype?
What are dangling pointers? How are dangling pointers different from memory leaks?