+1 vote
in C Plus Plus by
What is the output of this C code?

    #include <stdio.h>
    int main()
    {
        int i = 23;
        char c = -23;
        if (i < c)
            printf("Yes\n");
        else
            printf("No\n");
    }
a.Depends on the standard
b.Depends on the compiler
c.Yes
d.No

Related questions

+1 vote
asked Jun 13, 2019 in C Plus Plus by Derya
+1 vote
asked Jun 13, 2019 in C Plus Plus by Derya
...