C Programming The default parameter passing mechanism is None of these. call by reference call by value call by value result None of these. call by reference call by value call by value result 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);} 13 11 12 Compilation error 14 13 11 12 Compilation error 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 11 None of These 9 10 11 None of These 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? puts() None of these scanf() printf() gets() puts() None of these scanf() printf() gets() 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=1 Error x=0 x=5 x=4 x=1 Error x=0 x=5 x=4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strchr() strstr() strnset() None of these strrchr() strchr() strstr() strnset() None of these strrchr() ANSWER DOWNLOAD EXAMIANS APP