C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Register Linked list Array Queue Stack Register Linked list Array Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the right choice, if the following loop is implemented?void main(){ int num = 0; do{ --num; printf("%d", num); }while( ++num >= 0 );} A run time error will be generated. The program will not enter into the loop. There will be a compilation error reported. The loop will run infinitely many times. Prints the value of 0 one time only. A run time error will be generated. The program will not enter into the loop. There will be a compilation error reported. The loop will run infinitely many times. Prints the value of 0 one time only. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 2 Garbage Value None of These 0 2 Garbage Value None of These 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int c = - -2; printf("c=%d", c);} Error 1 2 -2 Error 1 2 -2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff0 fff4 fff2 fff3 fff1 fff0 fff4 fff2 fff3 fff1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the following code's output if choice = 'R'?switch(choice){ case 'R' : printf("RED"); case 'W' : printf("WHITE"); case 'B' : printf("BLUE"); default : printf("ERROR");break;} RED ERROR RED WHITE BLUE ERROR RED ERROR RED WHITE BLUE RED ERROR RED WHITE BLUE ERROR RED ERROR RED WHITE BLUE ANSWER DOWNLOAD EXAMIANS APP