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