Since C expressions, including subexpressions, are usually evaluated without regard to the context in which they appear, the subexpression a*b/c will be evaluated using integer arithmetic, which means truncating division.
If you want to perform floating-point arithmetic on integer values, you need to convert them to a floating-point type. This should work in your case:
long long int a;
long long int b;
long long int c;
/* Assign values to a, b, and c (!) */
double d = (double)a * b / c;
Note that converting just the first operand is enough to cause both the multiplication and the division to be done in type double.