C Programming Which is the only function all C programs must contain? system() main() start() printf() getch() system() main() start() printf() getch() ANSWER DOWNLOAD EXAMIANS APP
C Programming Comment on the following?const int *ptr; We can change the pointer as well as the value pointed by it. We cannot change the pointer ptr itself. Both of the above We cannot change the value pointed by ptr. We can change the pointer as well as the value pointed by it. We cannot change the pointer ptr itself. Both of the above We cannot change the value pointed by ptr. ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strnstr() laststr() None of these strrchr() strstr() strnstr() laststr() None of these strrchr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable It should be declared. It should be initialized. It should be both declared and initialized. None of these. It should be declared. It should be initialized. It should be both declared and initialized. None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 50 50, 13, 24, 13 13, 10, 24, 50 13, 13, 24, 13 50, 13, 11, 13 50, 13, 24, 50 50, 13, 24, 13 13, 10, 24, 50 13, 13, 24, 13 50, 13, 11, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff0 fff4 fff3 fff2 fff1 fff0 fff4 fff3 fff2 fff1 ANSWER DOWNLOAD EXAMIANS APP