Thursday, January 8, 2015

MULTIPLICATION OF TWO NUMBERS

#include<stdio.h>

main()

{ int a,b,c;

printf("Enter Number 1\n"); scanf("%d",&a);
printf("Enter   Number 2\n"); scanf("%d",&b);
c=a*b;
printf("\nThe Multiplication Result is %d\n",c);

}

OUTPUT:

Enter Number 1 34

Enter Number 2 7


The Multiplication Result is 238

No comments:

Post a Comment