C Programming If the two strings are identical, then strcmp() function returns 0 1 true None of these -1 0 1 true None of these -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#define INC(X) X++void main(){ int x=4; printf("%d", INC(x++));} Error 6 4 5 Error 6 4 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Random order Iterative order Parallel order Last In First Out order First In First Out order Random order Iterative order Parallel order Last In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 55445 54554 45545 54544 55445 54554 45545 54544 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 10 None of these 6 1 0 10 None of these 6 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 5 0 20 100 100 100 5 0 100 100 5 100 100 0 100 5 0 20 100 100 100 5 0 100 100 5 100 100 0 100 ANSWER DOWNLOAD EXAMIANS APP