C Programming Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} Error None of These I love Examians I hate Examians Error None of These I love Examians I hate Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? Theoratically no limit. The only practical limits are memory size and compilers. 2 50 8 20 Theoratically no limit. The only practical limits are memory size and compilers. 2 50 8 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32767 to 32768 -3.4e38 to 3.4e38 -32768 to 32767 -32668 to 32667 -32767 to 32768 -3.4e38 to 3.4e38 -32768 to 32767 -32668 to 32667 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on 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 Local variables ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 11 6 6 7 6 6 12 7 5 6 11 6 6 7 6 6 12 7 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... string stdin stderr Data file no such function in 'C'. string stdin stderr Data file no such function in 'C'. ANSWER DOWNLOAD EXAMIANS APP