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