Answer to Question #272951 in C++ for Dani

Question #272951

Write a complete c program for the following problem; get three numbers from the user, and calculate and display the product (multiplication) of numbers


1
Expert's answer
2021-11-28T18:40:57-0500
#include <stdio.h>

int main() {
  int a, b, c;
  scanf("%d%d%d", &a, &b, &c);
  printf("%d", a*b*c);
  return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS