[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


...write a program to multiply 2 numbers without...

<< Back to: LEARN C/C++ TODAY (A list of resources/tutorials)

Question by nagaraj
Submitted on 10/7/2003
Related FAQ: LEARN C/C++ TODAY (A list of resources/tutorials)
Rating: Rate this question: Vote
how do you write a program to multiply 2 numbers without using arithmetic expressions.



Answer by yoginisingh@yahoo.co.in
Submitted on 3/15/2005
Rating: Not yet rated Rate this answer: Vote
#include<stdio.h>
void main()
{
   int n1,n2,sum=0,i;
   printf("Enter any two number");
   scanf("%d %d",&n1,&n2);
   for(i=0;i<n2;i++)
      sum=sum+n1;
   printf("/n%d",sum);
   getch();
}

 

Answer by mudassir
Submitted on 11/11/2005
Rating: Not yet rated Rate this answer: Vote
#include <stdio.h>
void main()
{
int i,j,z;
printf ("Enter the number")
scanf ("%d"&i);
printf ("Enter the second no");
scanf ("%d",&j);
z=i*j;
printf ("The multiplication is ",&z);
}

 

Answer by pradeep
Submitted on 1/25/2007
Rating: Not yet rated Rate this answer: Vote
I wants to login to thsi website

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: LEARN C/C++ TODAY (A list of resources/tutorials)


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.