C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } haasi absiha hai None of these asiha haasi absiha hai None of these asiha ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 11 None of These 9 10 11 None of These 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment, and choose the correct onevoid main(){ int a, b = 2, c; a = 2 * (b++); c = 2 * (++b);} a = 3, c = 8 a = 4, c = 8 b = 3, c = 6 b = 4, c = 6 a = 4, c = 6 a = 3, c = 8 a = 4, c = 8 b = 3, c = 6 b = 4, c = 6 a = 4, c = 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ char long short int float char long short int float 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++);} 6 5 0 Compiler Error 7 6 5 0 Compiler Error 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 14 12 13 22 11 11 11 22 12 12 13 22 13 14 14 12 10 11 13 22 14 12 13 22 11 11 11 22 12 12 13 22 13 14 14 12 10 11 13 ANSWER DOWNLOAD EXAMIANS APP