Login
Remember
Register
Ask a Question
What is the output of this C code?
+1
vote
asked
Jun 13, 2019
in
C Plus Plus
by
Derya
What is the output of this C code?
#include <stdio.h>
int main()
{
int i = -3;
int k = i % 2;
printf("%d\n", k);
}
a.Implementation defined
b.-1
c.1
d.Compile time error
#c
language
Please
log in
or
register
to answer this question.
0
Answers
...