C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} absiha asiha hai haasi absiha asiha hai haasi ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? getch() printf() system() main() start() getch() printf() system() main() start() ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ char int short float long char int short float long ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at 65472 and each integer occupies 2 bytes?#includevoid main(){ int a[3][4] = {1, 2, 3, 4, 4, 3, 2, 1, 7, 8, 9, 0}; printf("%u, %u", a+1, &a+1);} 65480, 65488 65474, 65488 65480, 65496 65474, 65476 None of these 65480, 65488 65474, 65488 65480, 65496 65474, 65476 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 10 10 Run time error 20 20 10 20 10 10 Run time error 20 20 10 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by value result None of these. call by value call by reference call by value result None of these. call by value call by reference ANSWER DOWNLOAD EXAMIANS APP