C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff4 fff3 fff2 fff0 fff1 fff4 fff3 fff2 fff0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} Error 1 11 12 Error 1 11 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming For 16-bit compiler allowable range for integer constants is ________? -32768 to 32767 -32767 to 32768 -32668 to 32667 -3.4e38 to 3.4e38 -32768 to 32767 -32767 to 32768 -32668 to 32667 -3.4e38 to 3.4e38 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } None of these. H Hello Some address will be printed None of these. H Hello Some address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Error Will make an infinite loop. None of these. Some address will be printed. Error Will make an infinite loop. None of these. Some address will be printed. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam veda Exam_veda None of these Both A and B Examians Exam veda Exam_veda None of these Both A and B Examians ANSWER DOWNLOAD EXAMIANS APP