in C Plus Plus by (515 points)
What is the output of this C code?

    #include <stdio.h>
    int main()
    {
        int x = 1, y = 2;
        if (x && y == 1)
            printf("true\n");
        else
            printf("false\n");
    }
a.undefined behaviour
b.compile time error
c.FALSE
d.TRUE

Related questions

+1 vote
asked Jun 13, 2019 in C Plus Plus by Derya (515 points)
+1 vote
+1 vote
asked Jun 13, 2019 in C Plus Plus by Derya (515 points)
0 votes
asked Nov 24, 2020 in C Plus Plus by sharadyadav1986 (31.7k points)
...