C Programming When a function is recursively called all the automatic variables are stored in a .......... Register Array Queue Linked list Stack Register Array Queue Linked list Stack ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Needs input data. Must contain at least one function. None of these Need not contain any function. Needs input data. Must contain at least one function. None of these Need not contain any function. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 5 5 2 4 5 5 5 5 2 4 4 2 5 5 2 4 5 5 5 5 2 4 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of conditional compilation All of these Takes care of include files Acts before compilation Takes care of macros Takes care of conditional compilation All of these Takes care of include files Acts before compilation Takes care of macros ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double char float int real double char float int real ANSWER DOWNLOAD EXAMIANS APP