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();

}

Comments

Popular posts from this blog