Friday, 21 September 2012

C Language Multiple Choice Questions - Control Structure

 Following are the multiple choice questions and answers on C language Control structure that includes decision, Looping and jumping control structure.1) What will be the output of following program ?        #include        int main( )        {             int a=300,b,c;             if(a>=400)                 b=300;                 c=200;                    printf("%d,%d\n",b,c);

No comments:

Post a Comment