C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} asiha haasi absiha hai asiha haasi absiha hai ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff3 fff1 fff4 fff2 fff0 fff3 fff1 fff4 fff2 fff0 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 II and III I and II III and IV I and III II and IV II and III I and II III and IV I and III II and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Unary-operator Division operator Comma operator Conditional operator Assignment operator Unary-operator Division operator Comma operator Conditional operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } 4 None of These 64 16 4 None of These 64 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 20 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 2 20 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 2 ANSWER DOWNLOAD EXAMIANS APP