C Programming The address operator &, cannot act on Local variables Members of a structure R-values Arithmetic expressions Both of the above Local variables Members of a structure R-values Arithmetic expressions Both of the above 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);} 100 5 100 5 0 100 100 100 100 100 0 100 5 0 20 100 5 100 5 0 100 100 100 100 100 0 100 5 0 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 12 15 10 11 12 15 10 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns -1 1 None of these true 0 -1 1 None of these true 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=-1, j=-1, k=0, l=2, m; m = i++ && j++ && k++ || l++; printf("%d %d %d %d %d", i, j, k, l, m);} 0 0 1 3 1 0 0 1 2 0 0 0 1 3 0 0 0 0 2 1 0 0 1 3 1 0 0 1 2 0 0 0 1 3 0 0 0 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Need not contain any function. Needs input data. None of these Must contain at least one function. Need not contain any function. Needs input data. None of these Must contain at least one function. ANSWER DOWNLOAD EXAMIANS APP