C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Register Linked list Array Queue Stack Register Linked list Array Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Iterative order Last In First Out order Parallel order Random order First In First Out order Iterative order Last In First Out order Parallel order Random order First In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 3 Garbage Value 0 1 2 3 Garbage Value 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} World Hello World Hello None of these WorldHello World Hello World Hello None of these WorldHello ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. 0 The number of successful read input values. 1 ASCII value of the input read. The actual values read for each argument. 0 The number of successful read input values. 1 ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 16 None of These 4 64 16 None of These 4 64 ANSWER DOWNLOAD EXAMIANS APP