C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 1 10 None of these 6 0 1 10 None of these 6 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -110 10 -10 450 110 -110 10 -10 450 110 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? Syntax error 8 No output 6 Runtime error Syntax error 8 No output 6 Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all Local scope Block scope Function scope File scope No scope at all Local scope Block scope Function scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strrchr() strstr() strnstr() laststr() None of these strrchr() strstr() strnstr() laststr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff4 fff2 fff3 fff1 fff0 fff4 fff2 fff3 fff1 fff0 ANSWER DOWNLOAD EXAMIANS APP