79579608

Date: 2025-04-17 15:38:21
Score: 0.5
Natty:
Report link

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
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: fieres