ads

Sunday, 28 August 2016

C PROGRAM TO MULTIPLY TWO NUMBERS

#include<stdio.h> 
#include<conio.h>
void main()
{
   int a, b, c; 
   printf("Enter two numbers to multiply\n");
   scanf("%d%d",&a,&b); 
   c = a * b; 
   printf("multiplication of entered numbers = %d\n",c); 
   getch();
}

No comments:

Post a Comment