Here is a older code i have that would be much better if it had a wait/sleep command...
#include<stdio.h>
main()
{
int a;
int b;
int c;
printf("Enter the first number:");
scanf("%d",&a);
printf("Enter the second number:");
scanf("%d",&b);
c = a*b;
printf("%d ",a);
printf("X ");
printf("%d ",b);
printf("equals ");
printf("%d ",c);
return 0;
}


Sign In
Create Account


Back to top









