C Programming An array elements are always stored in ________ memory locations. Random Sequential and Random None of these Sequential Random Sequential and Random None of these Sequential ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} None of These Compiler Error GOOD BAD GOOD None of These Compiler Error GOOD BAD GOOD ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} asiha hai absiha haasi asiha hai absiha haasi ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} Garbage Value 5 6 None of these 0 Garbage Value 5 6 None of these 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope No scope at all File scope Block scope Local scope Function scope No scope at all File scope Block scope Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? system() printf() start() getch() main() system() printf() start() getch() main() ANSWER DOWNLOAD EXAMIANS APP