C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 10 110 -110 -10 450 10 110 -110 -10 450 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order First In First Out order Iterative order Random order Parallel order Last In First Out order First In First Out order Iterative order Random order Parallel order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 5 7 None of These 6 5 7 None of These 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? All of these It is a unary operator The operand can come before or after the operator It associates from the right It cannot be applied to an expression All of these It is a unary operator The operand can come before or after the operator It associates from the right It cannot be applied to an expression ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output if you will compile and execute the following c code?#include#define max 5void main(){ int i = 0; i = max++; printf("%d", i++);} 7 6 0 5 Compiler Error 7 6 0 5 Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 14 11 12 13 Compilation error 14 11 12 13 ANSWER DOWNLOAD EXAMIANS APP