C program to find Multiplication of two Numbers by G Krishna Chauhan

C program Multiplication of two Numbers


#include<stdio.h>#include<conio.h>void main (){     
int a=5,b=4,c=5,d;     d=a*b*c; printf("Multiplication of Given Value of a is %d",d);  
getch();}

No comments:

Post a Comment