C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} Morning None of these M Good Morning Good Morning None of these M Good Morning Good 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
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); 6 5 8 7 9 6 5 8 7 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } haasi absiha hai None of these asiha haasi absiha hai None of these asiha ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h None of these During Editing During Execution During Preprocessing During linking None of these During Editing During Execution During Preprocessing During linking ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 16 4 64 None of These 16 4 64 ANSWER DOWNLOAD EXAMIANS APP