C Programming When a function is recursively called all the automatic variables are stored in a .......... Queue Array Linked list Stack Register Queue Array Linked list Stack Register ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Makes the debugging task easier. Helps to avoid repeating a set of statements many times. All of these Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Makes the debugging task easier. Helps to avoid repeating a set of statements many times. All of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} 3 2 1 0 3 2 1 no output infinity loop 3 2 1 0 3 2 1 no output infinity loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float *ptr; None of these float ptr; *float ptr; float *ptr; None of these float ptr; *float ptr; 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 three None of These Error zero three None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");} Error Unequal None of these. Equal Error Unequal None of these. Equal ANSWER DOWNLOAD EXAMIANS APP