Hello,
i have written this code:
the result i get is zero, but it should be 15, why I'm getting a 0
thanks
i have written this code:
Code:
#include <stdio.h>
int main (void)
{
int a = 15;
int b = 35;
printf("a / b * b = %i\n", a / b * b);
}
the result i get is zero, but it should be 15, why I'm getting a 0
thanks