C Programming The default parameter passing mechanism is call by value result None of these. call by value call by reference call by value result None of these. call by value call by reference ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 1 -1 2 Program do no return a value. 1 -1 2 Program do no return a value. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 6 Compiler Error 5 0 7 6 Compiler Error 5 0 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming The statement int **a; None of these. is illegal is syntactically and semantically correct is legal but meaningless None of these. is illegal is syntactically and semantically correct is legal but meaningless ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 11 Compilation error 14 13 12 11 Compilation error 14 13 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? % ++ + && || % ++ + && || ANSWER DOWNLOAD EXAMIANS APP