Tech Programs
Sunday, 3 May 2015
multiplication in c program
Program
#include<stdio.h>
int main()
{
int a,b,c;
printf("Enter the two number multiplication :");
scanf("%d%d",&a,&b);
c=a*b;
printf("the two multiplication value is:%d",c);
}
output
Enter the two number multiplication : 2
4
the two multiplication value is:8
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment