answersLogoWhite

0

int num1 = 5;

int num2 = 5;

printf ("%d/%d=%d\n", num1, num2, num1/num2);

and if you want to enter during the program then

int num1;

int num2;

printf ("what is the first number?");

scanf ("%d", &num1);

printf ("what is the second number?");

scanf ("%d", &num2);

printf ("%d/%d=%d\n", num1, num2, num1/num2);

i hope this helped

User Avatar

Wiki User

14y ago

What else can I help you with?