C Programming Array passed as an argument to a function is interpreted as Address of the first element of the array. Values of the first elements of the array. Number of element of the array. Address of the array. Address of the first element of the array. Values of the first elements of the array. Number of element of the array. Address of the array. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? exam_veda examians1 1examians _examians exam_veda examians1 1examians _examians 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 Compilation error 11 14 13 12 Compilation error 11 14 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 14 1 10 0 None of these 14 1 10 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} x=0 x=4 x=5 Error x=1 x=0 x=4 x=5 Error x=1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 13 None of These 12 11 13 None of These 12 11 ANSWER DOWNLOAD EXAMIANS APP