C Programming The type of the controlling expression of a switch statement cannot be of the type ........ long short int float char long short int float char ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 14 0 1 10 None of these 14 0 1 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 5 0 100 5 0 20 100 0 100 100 100 100 100 5 100 5 0 100 5 0 20 100 0 100 100 100 100 100 5 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Division operator Unary-operator Comma operator Assignment operator Conditional operator Division operator Unary-operator Comma operator Assignment operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP
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");} I hate Examians None of These I love Examians Error I hate Examians None of These I love Examians Error ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is None of these 216 215 215 – 1 216 – 1 None of these 216 215 215 – 1 216 – 1 ANSWER DOWNLOAD EXAMIANS APP