C Programming Which is the only function all C programs must contain? start() getch() system() main() printf() start() getch() system() main() printf() 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 be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff3 fff0 fff2 fff4 fff1 fff3 fff0 fff2 fff4 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A number A special symbol other than underscore Both of the above An alphabet A number A special symbol other than underscore Both of the above An alphabet ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 11 14 13 12 Compilation error 11 14 13 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? % None of these * + / % None of these * + / ANSWER DOWNLOAD EXAMIANS APP