C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 9 None of these. 11 10 9 None of these. 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 100 100 5 0 100 100 5 100 5 0 20 100 0 100 100 100 100 5 0 100 100 5 100 5 0 20 100 0 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? gets() printf() puts() scanf() None of these gets() printf() puts() scanf() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } exam is printed Nothing is printed XAM is printed Compiler Error exam is printed Nothing is printed XAM is printed Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Block scope File scope Function scope Local scope No scope at all Block scope File scope Function scope Local scope No scope at all ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strnstr() strrchr() strstr() laststr() None of these strnstr() strrchr() strstr() laststr() None of these ANSWER DOWNLOAD EXAMIANS APP