C Programming Functions have .......... Block scope File scope Function scope Local scope No scope at all Block scope File scope Function scope Local scope No scope at all ANSWER DOWNLOAD EXAMIANS APP
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 zero None of These three Error zero None of These three ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? It is a unary operator It cannot be applied to an expression It associates from the right All of these The operand can come before or after the operator It is a unary operator It cannot be applied to an expression It associates from the right All of these The operand can come before or after the operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 16 -1 19 17 20 16 -1 19 17 20 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 h hi Error Garbage Value hi followed by garbage value h hi Error Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} i = -1, +i = -1 i = 1, +i = 1 None of These i = -1, +i = 1 i = -1, +i = -1 i = 1, +i = 1 None of These i = -1, +i = 1 ANSWER DOWNLOAD EXAMIANS APP