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