C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 11 14 Compilation error 13 12 11 14 Compilation error 13 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. The number of successful read input values. 0 1 ASCII value of the input read. The actual values read for each argument. The number of successful read input values. 0 1 ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 20 2 Compiler Error Linker Error 20 2 Compiler Error Linker Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Examians Exam_veda None of these Exam veda Both A and B Examians Exam_veda None of these Exam veda Both A and B ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} 12 11 13 14 Compilation error 12 11 13 14 Compilation error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 8 50 Theoratically no limit. The only practical limits are memory size and compilers. 20 2 8 50 Theoratically no limit. The only practical limits are memory size and compilers. 20 2 ANSWER DOWNLOAD EXAMIANS APP