C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? resume break None of these continue skip resume break None of these continue skip ANSWER DOWNLOAD EXAMIANS APP
C Programming What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 2 2 2 3 3 4 3 3 2 4 2 2 2 3 3 4 3 3 2 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Comment on the following?const int *ptr; 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 We cannot change the pointer ptr itself. We can change the pointer as well as the value pointed by it. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} 9 None of these Error 6 5 9 None of these Error 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is None of these 215 – 1 216 216 – 1 215 None of these 215 – 1 216 216 – 1 215 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 8 20 Theoratically no limit. The only practical limits are memory size and compilers. 2 50 8 20 Theoratically no limit. The only practical limits are memory size and compilers. 2 50 ANSWER DOWNLOAD EXAMIANS APP