C Programming String concatenation means - Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 8 2 20 Theoratically no limit. The only practical limits are memory size and compilers. 50 8 2 20 Theoratically no limit. The only practical limits are memory size and compilers. 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 16 -1 19 17 20 16 -1 19 17 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 6 6 6 7 12 7 11 6 5 6 6 6 6 7 12 7 11 6 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65486 65486, 65490 None of these 65486, 65488 65486, 65487 65486, 65486 65486, 65490 None of these 65486, 65488 65486, 65487 ANSWER DOWNLOAD EXAMIANS APP
C Programming C Language developed at _________? Cambridge University in 1972 Sun Microsystems in 1973 AT & T's Bell Laboratories of USA in 1972 AT & T's Bell Laboratories of USA in 1970 Cambridge University in 1972 Sun Microsystems in 1973 AT & T's Bell Laboratories of USA in 1972 AT & T's Bell Laboratories of USA in 1970 ANSWER DOWNLOAD EXAMIANS APP