C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Array Register Linked list Queue Stack Array Register Linked list Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? Depends upon the type of the variable to which it is pointing. int float unsigned int No data type Depends upon the type of the variable to which it is pointing. int float unsigned int No data type ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The number of successful read input values. ASCII value of the input read. 1 The actual values read for each argument. 0 The number of successful read input values. ASCII value of the input read. 1 The actual values read for each argument. 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 0 0 1 1 None of these 0 1 1 0 0 0 1 1 None of these 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 None of these 4 5 6 7 8 9 10 1 2 3 10 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 None of these 4 5 6 7 8 9 10 1 2 3 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order First In First Out order Iterative order Last In First Out order Random order Parallel order First In First Out order Iterative order Last In First Out order Random order ANSWER DOWNLOAD EXAMIANS APP