C Programming Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }} Error None of These three zero Error None of These three zero ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? continue resume None of these skip break continue resume None of these skip break ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -10 -110 10 450 110 -10 -110 10 450 110 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 0.25 1 9 0.5 2 0.25 1 9 0.5 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} hi followed by garbage value Error Garbage Value h hi hi followed by garbage value Error Garbage Value h hi ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope No scope at all Local scope Function scope File scope Block scope No scope at all Local scope Function scope File scope ANSWER DOWNLOAD EXAMIANS APP