C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff2 fff1 fff3 fff4 fff0 fff2 fff1 fff3 fff4 fff0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} Linker Error 2 Compiler Error 20 Linker Error 2 Compiler Error 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 9 7 6 5 8 9 7 6 5 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float ptr; *float ptr; None of these float *ptr; float ptr; *float ptr; None of these float *ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? continue break skip None of these resume continue break skip None of these resume ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Exam\0Veda None of these Exam Veda Veda Exam Exam\0Veda None of these Exam Veda Veda ANSWER DOWNLOAD EXAMIANS APP