C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 4 3 10 5 5 5 10 5 3 4 10 5 4 4 10 5 3 3 10 5 4 3 10 5 5 5 10 5 3 4 10 5 4 4 10 5 3 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope No scope at all File scope Function scope Local scope Block scope No scope at all File scope Function scope Local scope 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;} None of these 0 1 10 6 None of these 0 1 10 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 54554 54544 45445 45545 54554 54544 45445 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff0 fff3 fff4 fff2 fff1 fff0 fff3 fff4 fff2 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? strnset() strchr() None of these strrchr() strstr() strnset() strchr() None of these strrchr() strstr() ANSWER DOWNLOAD EXAMIANS APP