KodeGod.com

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

 
int main()
    {
        int i = 0;
        int x = i++, y = ++i;
        printf("%d % d\n", x, y);
        return 0;
    }