Accept two numbers from the user...

...and multiply these two numbers without using the multiplication operator!
using any loop!

Questions by cguyc

Showing Answers 1 - 2 of 2 Answers

Er.Kunal

  • Jul 22nd, 2012
 

I have included the code herein for u.

Code
  1.  

  2.  

  3. //Program for Multiplication without using multiplication operator written by Er.Kunal

  4. #include<stdio.h>

  5. #include<conio.h>

  6. "Enter multiplicand and multiplier:");

  7. scanf("%d%d""

  8. You entered multiplicand=%d

  9. multiplier=%d""

  10. Your Result is:%d",result);

  11. getch();

  12. }

  Was this answer useful?  Yes

Delbin

  • Jul 22nd, 2012
 

Code
  1. #include<stdio.h>

  2. #include<stdlib.h>

  3. "%d%d""%d

  4. ",result);

  5. }

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions