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

    #include <stdio.h>
    void main()
    {
        int x = 97;
        int y = sizeof(x++);
        printf("x is %d", x);
    }
a.x is 97
b.x is 99
c.x is 98
d.Run 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
...