C program ofr Multiplication
#include <stdio.h>
#include <coino.h>
void main()
{ int a,b,c;
printf("insert two no. for Multiplication :\t");
scanf("%d%d",&a,&b);
c=a*b;
printf("Multiplication of %d from %d is %d"a,b,c);
getch();
}
#include <stdio.h>
#include <coino.h>
void main()
{ int a,b,c;
printf("insert two no. for Multiplication :\t");
scanf("%d%d",&a,&b);
c=a*b;
printf("Multiplication of %d from %d is %d"a,b,c);
getch();
}
Comments
Post a Comment