C Programming String concatenation means - Merging two strings. Partitioning the string into two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Combining two strings. Merging two strings. Partitioning the string into two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Combining two strings. 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, 65476 None of these 65474, 65488 65480, 65488 65480, 65496 65474, 65476 None of these 65474, 65488 65480, 65488 65480, 65496 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 8 5 6 9 7 8 5 6 9 7 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);} 14 11 12 13 Compilation error 14 11 12 13 Compilation error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? None of these arr[6] arr{7} arr[7] arr{6} None of these arr[6] arr{7} arr[7] arr{6} ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 0 The actual values read for each argument. 1 The number of successful read input values. ASCII value of the input read. 0 The actual values read for each argument. 1 The number of successful read input values. ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP