C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 11 10 None of These 9 11 10 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 2 3 0 1 2 3 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 20 20 Run time error 10 20 10 10 20 20 Run time error 10 20 10 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Function scope Block scope Local scope No scope at all File scope Function scope Block scope Local scope No scope at all ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Linked list Register Array Queue Stack Linked list Register Array Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strstr() None of these strnstr() laststr() strrchr() strstr() None of these strnstr() laststr() strrchr() ANSWER DOWNLOAD EXAMIANS APP