C Programming When a function is recursively called all the automatic variables are stored in a .......... Queue Stack Linked list Array Register Queue Stack Linked list Array Register ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? None of these strnset() strstr() strchr() strrchr() None of these strnset() strstr() strchr() strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 10 1 None of these 6 0 10 1 None of these 6 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on the first column has # as the first character need not start on a new line comes before the first executable statement need not start on the first column has # as the first character need not start on a new line comes before the first executable statement ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#includevoid main(){ int i = 10; void *p = &i; printf("%d\n", (int)*p);} 10 Undefined behavior Segmentation fault/runtime crash Compiler time error 10 Undefined behavior Segmentation fault/runtime crash Compiler time error ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language General purpose language None of these System programming language Data processing language General purpose language None of these System programming language ANSWER DOWNLOAD EXAMIANS APP