+1 vote
in C Plus Plus by
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

Related questions

0 votes
asked Jun 11, 2020 in C Plus Plus by Robindeniel
0 votes
asked Jun 15, 2020 in C Plus Plus by Robindeniel
...