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