0
Program to find product of two given numbers in C language
Give the code
4 Respostas
+ 1
Just a program, to learn more, complete the COUrse: https://www.sololearn.com/Course/C/
#include <stdio.h>
int main(){
int num1 = 5;
int num2 = 15;
int product;
product = num1 * num2;
printf ("%d",product);
}
+ 2
Go to c course and study about Operators
https://www.sololearn.com/learn/C/2917/?ref=app
+ 2
I like the positivity shown in your profile image 👍
So I suggest you to join the C tutorial in SoloLearn. Even half way through the course I'm sure you can do this without asking people to do it.
+ 2
Show your attempt first.We are not here to write code on your behalf.
So try it yourself first than we'll help you in your code.Thanks.