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