KodeGod.com

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

 
int main()
    {
        int a = 10, b = 5, c = 5;
        int d;
        d = a == (b + c);
        printf("%d", d);
    }