C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} complier error 1 1 -1 1 -1 1 -1 -1 complier error 1 1 -1 1 -1 1 -1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 6 6 5 6 11 6 6 7 12 7 6 6 5 6 11 6 6 7 12 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the right choice, if the following loop is implemented?void main(){ int num = 0; do{ --num; printf("%d", num); }while( ++num >= 0 );} The loop will run infinitely many times. A run time error will be generated. The program will not enter into the loop. There will be a compilation error reported. Prints the value of 0 one time only. The loop will run infinitely many times. A run time error will be generated. The program will not enter into the loop. There will be a compilation error reported. Prints the value of 0 one time only. ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strnstr() None of these strstr() strrchr() laststr() strnstr() None of these strstr() strrchr() laststr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ printf(5+"Good Morningn");} M Morning Good Morning None of these Good M Morning Good Morning None of these Good ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} Error 100 1 Error 100 1 ANSWER DOWNLOAD EXAMIANS APP