C Programming The recursive functions are executed in a ........... Last In First Out order Random order 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 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... ASCII value of the input read. 0 1 The number of successful read input values. The actual values read for each argument. ASCII value of the input read. 0 1 The number of successful read input values. The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope Local scope File scope No scope at all Function scope Block scope Local scope File scope No scope at all Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? sqr(x) pow(2, x) power(2, x) pow(x, 2) power(x, 2) sqr(x) pow(2, x) power(2, x) pow(x, 2) power(x, 2) ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Array Queue Register Stack Linked list Array Queue Register Stack ANSWER DOWNLOAD EXAMIANS APP