What is the output of the C program
#includestdio.h
int main()
{
int a = -25%-10;
int b = -25%10;
int c = 25%-10;
printf("%d %d %d", a, b, c);

return 0;
}

Posted on by