9 Jan 2015

Program: Multiplication of two number



#include<stdio.h>
#include<conio.h>
Void main()
{
int  a,b,multi;
clrscr();
printf("Enter the value of  a and b:\n");
scanf("%d%d",&a,&b);
multi=a*b;
printf("\nmulti=%d",multi);
getch();
}

No comments:

Post a Comment