C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Register Stack Array Queue Linked list Register Stack Array Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 The number of successful read input values. The actual values read for each argument. ASCII value of the input read. 1 0 The number of successful read input values. The actual values read for each argument. ASCII value of the input read. 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr string no such function in 'C'. Data file stdin stderr string no such function in 'C'. Data file stdin ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value call by reference call by value result None of these. call by value call by reference call by value result None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} 0 no error no output 1 complier error 0 no error no output 1 complier error 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)));} Hello World WorldHello World Hello None of these Hello World WorldHello World Hello None of these ANSWER DOWNLOAD EXAMIANS APP