C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -110 110 450 -10 10 -110 110 450 -10 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Array passed as an argument to a function is interpreted as Number of element of the array. Values of the first elements of the array. Address of the array. Address of the first element of the array. Number of element of the array. Values of the first elements of the array. Address of the array. Address of the first element of the array. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program code?#include#define a 10void main(){ #define a 50 printf("%d", a);} 10 None of These Compiler Error 50 10 None of These Compiler Error 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=1;if("%d=hello", a);} 1 complier error 0 no error no output 1 complier error 0 no error no output 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]));} 4 5 6 7 None of these 4 5 6 7 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? % + / None of these * % + / None of these * ANSWER DOWNLOAD EXAMIANS APP