C Programming The library function used to find the last occurrence of a character in a string is strrchr() strnstr() laststr() None of these strstr() strrchr() strnstr() laststr() None of these strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order Random order First In First Out order Iterative order Parallel order Last In First Out order Random order First In First Out order Iterative order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are true after execution of the program.void main(){ int a[10], i, *p; a[0] = 1; a[1] = 2; p = a; (*p)++;} a[0] = 3 a[0] = 2 Compilation error a[1] = 3 a[1] = 2 a[0] = 3 a[0] = 2 Compilation error a[1] = 3 a[1] = 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); None of these Infinite loop 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 None of these Infinite loop 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 19 16 17 -1 20 19 16 17 -1 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language Data processing language System programming language None of these General purpose language Data processing language System programming language None of these ANSWER DOWNLOAD EXAMIANS APP