C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 3 Garbage Value 1 0 2 3 Garbage Value 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Queue Linked list Register Stack Array Queue Linked list Register Stack Array ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A number Both of the above A special symbol other than underscore An alphabet A number Both of the above A special symbol other than underscore An alphabet ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1; while(i<=5) { printf("%d", i); if(i>2) goto here; i++; }}fun(){ here: printf("PP");} Compiler Error 12PP 12PP345 None of These Compiler Error 12PP 12PP345 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Makes the debugging task easier. Enhances the logical clarity of the program. All of these Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. Makes the debugging task easier. Enhances the logical clarity of the program. All of these Helps to avoid repeating a set of statements many times. Helps to avoid repeated programming across programs. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} None of These I hate Examians I love Examians Error None of These I hate Examians I love Examians Error ANSWER DOWNLOAD EXAMIANS APP