C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 9 None of these. 10 11 9 None of these. 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 14 None of these 10 0 1 14 None of these 10 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is function? Function is a block of code that performs a specific task. It has a name and it is reusable. Function is a block of statements that perform some specific task. Function is the fundamental modular unit. A function is usually designed to perform a specific task. All of these Function is a block of code that performs a specific task. It has a name and it is reusable. Function is a block of statements that perform some specific task. Function is the fundamental modular unit. A function is usually designed to perform a specific task. All of these 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 Program do no return a value. 2 -1 1 Program do no return a value. 2 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Need not contain any function. Must contain at least one function. None of these Needs input data. Need not contain any function. Must contain at least one function. None of these Needs input data. ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 32 30 40 36 24 32 30 40 36 24 ANSWER DOWNLOAD EXAMIANS APP