Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
23 views1 page

Product of Integers

Uploaded by

bmaina380800
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views1 page

Product of Integers

Uploaded by

bmaina380800
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

1 #include <stdio.

h>
2 int main()
3 {
4 int integer1;
5 int integer2;
6
7 printf("Enter first integer\n");
8 scanf("%d",&integer1);
9
10 printf("Enter second integer\n");
11 scanf("%d",&integer2);
12
13 int product;
14 product=integer1 *integer2;
15
16 printf("Product is %d\n",product);
17
18 }
19

You might also like