C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} asiha haasi hai absiha asiha haasi hai absiha ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } Runtime error 4 5 6 7 Syntax error 4 1 2 3 4 Runtime error 4 5 6 7 Syntax error 4 1 2 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); Infinite loop 10 Syntax error 0 0123456789 Infinite loop 10 Syntax error 0 0123456789 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions All of these Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Helps to avoid repeating a set of statements many times. All of these Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeated programming across programs. Helps to avoid repeating a set of statements many times. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 0 100 5 0 20 100 5 100 100 100 100 5 0 100 100 0 100 5 0 20 100 5 100 100 100 100 5 0 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are true after execution of the program.void main(){ int a[10], i, *p; a[0] = 1; a[1] = 2; p = a; (*p)++;} a[0] = 2 a[0] = 3 a[1] = 3 Compilation error a[1] = 2 a[0] = 2 a[0] = 3 a[1] = 3 Compilation error a[1] = 2 ANSWER DOWNLOAD EXAMIANS APP