C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 10 -10 110 -110 450 10 -10 110 -110 450 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} 6 7 None of these 5 4 6 7 None of these 5 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Array passed as an argument to a function is interpreted as Values of the first elements of the array. Address of the first element of the array. Address of the array. Number of element of the array. Values of the first elements of the array. Address of the first element of the array. Address of the array. Number of element of the array. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 0 10 14 None of these 1 0 10 14 None of these 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C Language developed at _________? Cambridge University in 1972 AT & T's Bell Laboratories of USA in 1972 AT & T's Bell Laboratories of USA in 1970 Sun Microsystems in 1973 Cambridge University in 1972 AT & T's Bell Laboratories of USA in 1972 AT & T's Bell Laboratories of USA in 1970 Sun Microsystems in 1973 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} Garbage value 3 Error 6 Garbage value 3 Error 6 ANSWER DOWNLOAD EXAMIANS APP