Write a complete c program for the following problem; get three numbers from the user, and calculate and display the product (multiplication) of numbers
#include <stdio.h>
int main() {
int a, b, c;
scanf("%d%d%d", &a, &b, &c);
printf("%d", a*b*c);
return 0;
}
Comments
Leave a comment