Skip to content

Instantly share code, notes, and snippets.

View najifasayed's full-sized avatar

Najifa Sayed najifasayed

  • Joined Oct 8, 2025
View GitHub Profile
@najifasayed
najifasayed / problem1
Created October 8, 2025 15:57
Najifa Sayed - EC7-BWPCS-R05 - Class 1
#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;