C Programming Comment on the following?const int *ptr; We cannot change the pointer ptr itself. We can change the pointer as well as the value pointed by it. We cannot change the value pointed by ptr. Both of the above We cannot change the pointer ptr itself. We can change the pointer as well as the value pointed by it. We cannot change the value pointed by ptr. Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeated programming across programs. Makes the debugging task easier. All of these Helps to avoid repeating a set of statements many times. Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Makes the debugging task easier. All of these Helps to avoid repeating a set of statements many times. Enhances the logical clarity of the program. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} no output 3 2 1 3 2 1 0 infinity loop no output 3 2 1 3 2 1 0 infinity loop ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } None of these. H Hello Some address will be printed None of these. H Hello Some address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is None of these laststr() strnstr() strstr() strrchr() None of these laststr() strnstr() strstr() strrchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Division operator Assignment operator Unary-operator Conditional operator Comma operator Division operator Assignment operator Unary-operator Conditional operator Comma operator ANSWER DOWNLOAD EXAMIANS APP