C Programming The default parameter passing mechanism is call by value call by reference None of these. call by value result call by value call by reference None of these. call by value result ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 10 9 None of These 11 10 9 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above R-values Local variables Members of a structure Arithmetic expressions Both of the above R-values Local variables Members of a structure Arithmetic expressions ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 – 1 216 – 1 216 215 None of these 215 – 1 216 – 1 216 215 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 54554 55445 54544 45545 54554 55445 54544 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 None of these 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 None of these 4 5 6 7 8 9 10 ANSWER DOWNLOAD EXAMIANS APP