KodeGod.com

050. Technical interview question: Give the output of following code

 
#include<stdio.h>
    void main()
    {
        int x = 97;
        int y = sizeof(x++);
        printf("X is %d", x);
    }