C Programming What is the correct value to return to the operating system upon the successful completion of a program? 2 -1 Program do no return a value. 1 2 -1 Program do no return a value. 1 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);} 65474, 65488 65480, 65488 None of these 65480, 65496 65474, 65476 65474, 65488 65480, 65488 None of these 65480, 65496 65474, 65476 ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 II and III I, II and III I, III and IV I and II III and IV II and III I, II and III I, III and IV I and II III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? gets() scanf() puts() printf() None of these gets() scanf() puts() printf() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 10 30 50 15 None of these 10 30 50 15 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 12 13 11 14 Compilation error 12 13 11 14 Compilation error ANSWER DOWNLOAD EXAMIANS APP