Code Snippets C

#include
void main()
{
int total = 134;
int divider = 8;
int x = 0;
int y = 0;
x = total/divider;
printf(" total is %d and divider is %d", total, divider);
printf("\n x is %d.", x);
/* left over */
y = total%divider;
printf("\nThere are %d left over.\n", y);
}