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 None of these 65474, 65488 65474, 65476 65480, 65496 65480, 65488 None of these 65474, 65488 65474, 65476 65480, 65496 ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Combining two strings. Extracting a substring out of a string. Merging two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Combining two strings. Extracting a substring out of a string. Merging two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 6 None of These 5 7 6 None of These 5 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Last In First Out order Random order First In First Out order Iterative order Parallel order Last In First Out order Random order First In First Out order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? printf() puts() None of these gets() scanf() printf() puts() None of these gets() scanf() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to -1 -10 to 0 Complier error -10 to infinite -10 to -1 -10 to 0 Complier error -10 to infinite ANSWER DOWNLOAD EXAMIANS APP