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);} 13 14 12 11 Compilation error 13 14 12 11 Compilation error ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 1289 Syntax error 0713 0289 713 1289 Syntax error 0713 0289 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Comparing the two strings to define the larger one. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. Combining two strings. Comparing the two strings to define the larger one. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. Combining two strings. ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct statement.I. The scope of a macro definition need not be the entire program.II. The scope of a macro definition extends from the point of definition to the end of the file.III. New line is a macro definition delimiter.IV. A macro definition may go beyond a line. I, II and III I, II, III and IV II, III and IV II and III I and II I, II and III I, II, III and IV II, III and IV II and III I and II ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 3 4 10 5 4 4 10 5 4 3 10 5 5 5 10 5 3 3 10 5 3 4 10 5 4 4 10 5 4 3 10 5 5 5 10 5 3 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} None of these M Good Morning Morning Good None of these M Good Morning Morning Good ANSWER DOWNLOAD EXAMIANS APP