Skip to content

Latest commit

 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

#include <stdio.h>

int main() { int num1, num2, product;

// Asking for input
printf("Enter two integers: ");
scanf("%d %d", &num1, &num2);

// Multiplying the two numbers
product = num1 * num2;

// Displaying the result
printf("Product of %d and %d is %d\n", num1, num2, product);

return 0;

}

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors