C Programming The type of the controlling expression of a switch statement cannot be of the type ........ short char float int long short char float int long ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A number An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double float int char real double float int char real ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 45445 54544 54554 45545 45445 54544 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 0 1 10 14 None of these 0 1 10 14 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff2 fff0 fff3 fff4 fff1 fff2 fff0 fff3 fff4 ANSWER DOWNLOAD EXAMIANS APP