This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main() | |
{ | |
int number1, number2; | |
printf("Enter the first number:"); | |
scanf("%d", &number1); | |
printf("Enter the second number:"); | |
scanf("%d", &number2); | |
printf("The multiplication result is: %d", number1 * number2); | |
return 0; |