Q-1 Add/subtract/multiplication two numbers with taking input from users by scanf functions
#include<stdio.h>
int main() {
int shoes;
int sandels;
printf("Enter the number of shoes ");
scanf("%d",&shoes);
printf("Enter the number of sandels ");
scanf("%d",&sandels);
printf("the multiplication is : %d \n ",shoes*sandels);
// 5th table
printf("%d*%d=%d\n", 5,1,5*1);
printf("%d*%d=%d\n", 5,2,5*2);
printf("%d*%d=%d\n", 5,3,5*3);
printf("%d*%d=%d\n", 5,4,5*4);
printf("%d*%d=%d\n", 5,5,5*5);
printf("%d*%d=%d\n", 5,6,5*6);
printf("%d*%d=%d\n", 5,7,5*7);
printf("%d*%d=%d\n", 5,8,5*8);
printf("%d*%d=%d\n", 5,9,5*9);
printf("%d*%d=%d\n", 5,10,5*10);
// 15678
}