C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 2 4, 4 2, 0 2, 4 0, 2 2, 2 4, 4 2, 0 2, 4 0, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns true 0 None of these 1 -1 true 0 None of these 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 2 Program do no return a value. 1 -1 2 Program do no return a value. 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? resume continue None of these break skip resume continue None of these break skip ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Parallel order Iterative order Random order Last In First Out order First In First Out order Parallel order Iterative order Random order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strrchr() strnset() strstr() None of these strchr() strrchr() strnset() strstr() None of these strchr() ANSWER DOWNLOAD EXAMIANS APP