Look at the output of the following small program, this will answer your question.
int main() { printf(" 3%%2 = %d\n", 3%2); printf("-3%%2 = %d\n", -3%2); }
Output:
3%2 = 1 -3%2 = -1