C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 11 None of these. 9 10 11 None of these. 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 1 0.5 2 9 0.25 1 0.5 2 9 0.25 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} Syntax error 053 65 65 65 065 65 53 65 Syntax error 053 65 65 65 065 65 53 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 0 2, 4 2, 2 4, 4 0, 2 2, 0 2, 4 2, 2 4, 4 0, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Local variables Both of the above R-values Arithmetic expressions Members of a structure Local variables Both of the above R-values Arithmetic expressions Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 ASCII value of the input read. The number of successful read input values. 1 The actual values read for each argument. 0 ASCII value of the input read. The number of successful read input values. 1 The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP