Consider following code snippet: ```c void test(int i, int *j) { bool b = *j < *j && *j > *j; bool c = i < i && i > i; i < i && i > i; } ``` `clang-format` will give: ```c void test(int i, int *j) { bool b = *j<*j && * j> * j; bool c = i < i && i > i; i<i && i> i; } ```