Kizspy | Question: 19.
(Choose 1 answer)
What will the following program output?
#include <stdio.h>
int main()
{
int a = -5;
RUUVERRIJM Com
}
if (a%2==0)
printf("a is an positive number.");
else if (a == 0)
printf("a is zero.");
else
printf("a is an negative number.");
return 0;
A. a is an positive number.
B. a is an negative number.
C. a is zero.
D. An error will be raised.