C Programming The recursive functions are executed in a ........... First In First Out order Parallel order Iterative order Random order Last In First Out order First In First Out order Parallel order Iterative order Random order Last In First Out 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 .......... File scope No scope at all Local scope Block scope Function scope File scope No scope at all Local scope Block scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? sqr(x) pow(x, 2) power(x, 2) pow(2, x) power(2, x) sqr(x) pow(x, 2) power(x, 2) pow(2, x) power(2, x) ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Array Register Queue Linked list Stack Array Register Queue Linked list Stack ANSWER DOWNLOAD EXAMIANS APP