C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} absiha asiha haasi hai absiha asiha haasi hai ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 4 5 6 7 8 9 10 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 10 None of these 4 5 6 7 8 9 10 4 5 6 7 8 9 1 2 3 4 5 6 7 8 9 1 2 3 10 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? printf() system() start() getch() main() printf() system() start() getch() main() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 0 6 None of these 1 10 0 6 None of these 1 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct statement.I. The scope of a macro definition need not be the entire program.II. The scope of a macro definition extends from the point of definition to the end of the file.III. New line is a macro definition delimiter.IV. A macro definition may go beyond a line. I and II II, III and IV I, II, III and IV I, II and III II and III I and II II, III and IV I, II, III and IV I, II and III II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 100 1 0 Error 100 1 0 Error ANSWER DOWNLOAD EXAMIANS APP