KodeGod.com

025. Technical interview question: Give the output the following code

#include<stdio.h>
    int main()
    {
        int a = 1, b = 1, c;
        c = a++-++b;
        printf("%d, %d, %d", a, b, c);
    }