C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 None of these Infinite loop 10 11 12 13 14 15 10 11 12 13 14 9 10 11 12 13 None of these Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} Error c 65 A Error c 65 A ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} hai asiha haasi absiha hai asiha haasi absiha ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 0 0 0 Error 1 1 1 garbage values 0 0 0 Error 1 1 1 garbage values ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions R-values Members of a structure Local variables Both of the above Arithmetic expressions R-values Members of a structure Local variables Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32767 to 32768 -32768 to 32767 -32668 to 32667 -3.4e38 to 3.4e38 -32767 to 32768 -32768 to 32767 -32668 to 32667 -3.4e38 to 3.4e38 ANSWER DOWNLOAD EXAMIANS APP