C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 53 65 65 65 053 65 065 65 Syntax error 53 65 65 65 053 65 065 65 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strrchr() laststr() None of these strnstr() strstr() strrchr() laststr() None of these strnstr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} well done examians complier error None of these examians well done examians complier error None of these examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} 1 100 Error 1 100 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 1289 713 Syntax error 0289 0713 1289 713 Syntax error 0289 0713 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value call by value result call by reference None of these. call by value call by value result call by reference None of these. ANSWER DOWNLOAD EXAMIANS APP