KodeGod.com

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

 
#include<stdio.h>
int main()
{
        int a = 5;
        printf("%dkodegod"+2, a);
        return 0;
}