C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} Hello None of these WorldHello Hello World World Hello None of these WorldHello Hello World World ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 2 Theoratically no limit. The only practical limits are memory size and compilers. 8 20 50 2 Theoratically no limit. The only practical limits are memory size and compilers. 8 20 50 ANSWER DOWNLOAD EXAMIANS APP
C Programming What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 3 3 2 4 3 4 2 2 2 3 3 3 2 4 3 4 2 2 2 3 ANSWER DOWNLOAD EXAMIANS APP
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 Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 III and IV I and II II and III I, III and IV I, II and III III and IV I and II II and III I, III and IV I, II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? float real int double char float real int double char ANSWER DOWNLOAD EXAMIANS APP