C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 6 5 Compiler Error Garbage Value 6 5 Compiler Error Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} infinity loop no output 3 2 1 0 3 2 1 infinity loop no output 3 2 1 0 3 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Linked list Stack Array Register Queue Linked list Stack Array Register Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strnstr() strrchr() None of these strstr() laststr() strnstr() strrchr() None of these strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 11, 11 11, 10 10, 10 10, 11 11, 11 11, 10 10, 10 10, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Makes the debugging task easier. All of these Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Helps to avoid repeating a set of statements many times. Makes the debugging task easier. All of these Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Helps to avoid repeating a set of statements many times. ANSWER DOWNLOAD EXAMIANS APP