C Programming The default parameter passing mechanism is call by reference call by value result None of these. call by value call by reference call by value result None of these. call by value ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of None of these. An operating system An Editor A compiler None of these. An operating system An Editor A compiler ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 8 3 None of these 3 8 3 7 7 3 8 3 None of these 3 8 3 7 7 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45445 54554 54544 45545 45445 54554 54544 45545 ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 14 12 13 22 13 14 14 22 12 12 13 22 11 11 11 12 10 11 13 22 14 12 13 22 13 14 14 22 12 12 13 22 11 11 11 12 10 11 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 1..0 0..0 1..1 0..1 1..0 0..0 1..1 0..1 ANSWER DOWNLOAD EXAMIANS APP