C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} 100 Error 1 100 Error 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; char a[]="�"; if(printf("%sn", a)) printf("Ok here n"); else printf("Forget itn");} Error Forget it None of These Ok here Error Forget it None of These Ok here ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 13, 10, 24, 50 13, 13, 24, 13 50, 13, 24, 13 50, 13, 11, 13 50, 13, 24, 50 13, 10, 24, 50 13, 13, 24, 13 50, 13, 24, 13 50, 13, 11, 13 50, 13, 24, 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language System programming language General purpose language None of these Data processing language System programming language General purpose language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming In an expression involving || operator, evaluationI. Will be stopped if one of its components evaluates to falseII. Will be stopped if one of its components evaluates to trueIII. Takes place from right to leftIV. Takes place from left to right I and III II and III III and IV I and II II and IV I and III II and III III and IV I and II II and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 4 3 10 5 3 4 10 5 3 3 10 5 4 4 10 5 5 5 10 5 4 3 10 5 3 4 10 5 3 3 10 5 4 4 10 5 5 5 ANSWER DOWNLOAD EXAMIANS APP