Here are 2 example lines:
int a = *(c + b + 3) + *(d + e + 3);
float b = (*(c + b + 3) + *(d + e + 3)) / 2.0;
style50 insists on a space between * and (d in the second one, which would be poor style.

Might be confused by the parentheses? @crossroads1112