+1 vote
in C Plus Plus by
The code snippet below produces

    #include <stdio.h>
    void main()
    {
        1 < 2 ? return 1 : return 2;
    }
a.returns 2
b.Varies
c.returns 1
d.Compile time error

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
...