Program to find product of two given numbers in C language | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Program to find product of two given numbers in C language

Give the code

4th Apr 2020, 2:28 PM
Aditya Gupta
Aditya Gupta - avatar
4 Answers
+ 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); }
4th Apr 2020, 2:40 PM
Bibek Oli
Bibek Oli - avatar
+ 2
Go to c course and study about Operators https://www.sololearn.com/learn/C/2917/?ref=app
4th Apr 2020, 2:34 PM
Daljeet Singh
Daljeet Singh - avatar
+ 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.
4th Apr 2020, 2:34 PM
Ipang
+ 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.
4th Apr 2020, 2:34 PM
Muhammad Bilal
Muhammad Bilal - avatar