Programming Languages C Objective
Mar 07, 2013

What will be output of following c code?

#include<stdio.h>

int main(){

    int x=011,i;

    for(i=0;i<x;i+=3){

         printf("Start ");

         continue;

         printf("End");

    }

return 0;

}

Choose the correct answer:
A) Start Start Start
B) Start End Start
C) End Start End
D) End End End
Detailed Explanation

No Explanation

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback