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 14 13 11 12 Compilation error 14 13 11 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} Error 6 5 9 None of these Error 6 5 9 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line has # as the first character need not start on the first column comes before the first executable statement need not start on a new line has # as the first character need not start on the first column comes before the first executable statement ANSWER DOWNLOAD EXAMIANS APP
C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? defg cdefg efg fg bcdefg defg cdefg efg fg bcdefg 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 4 4 10 5 4 3 10 5 3 4 10 5 5 5 10 5 3 3 10 5 4 4 10 5 4 3 10 5 3 4 10 5 5 5 10 5 3 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} hai absiha haasi asiha hai absiha haasi asiha ANSWER DOWNLOAD EXAMIANS APP