KodeGod.com

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

 
int main()
{
    int x=011,i;
    for(i=0; i<x; i+=3)
    {
        printf("KodeGod.com ");
        continue;
        printf("Learn!");
    }
    return 0;
}