C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Register Stack Array Queue Linked list Register Stack Array Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 0, 2 4, 4 2, 4 2, 0 2, 2 0, 2 4, 4 2, 4 2, 0 2, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the difference between a declaration and a definition of a variable? There is no difference between them. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. Both can occur multiple times, but a definition must occur first. There is no difference between them. A definition occurs once, but a declaration may occur many times. Both can occur multiple times, but a declaration must occur first. A declaration occurs once, but a definition may occur many times. Both can occur multiple times, but a definition must occur first. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double real float int char double real float int char ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order Random order Iterative order First In First Out order Parallel order Last In First Out order Random order Iterative order First In First Out order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + % / None of these * + % / None of these * ANSWER DOWNLOAD EXAMIANS APP