C Programming String concatenation means - Combining two strings. Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Combining two strings. Partitioning the string into two strings. Merging two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define clrscr() 100void main(){ clrscr(); printf("%d", clrscr());} 100 Error 1 100 Error 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=10 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 13 14 11 12 Compilation error 13 14 11 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} None of these 0 Garbage Value 5 6 None of these 0 Garbage Value 5 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? auto default register main case auto default register main case ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 11 11 11 22 13 14 14 22 14 12 13 22 12 12 13 12 10 11 13 22 11 11 11 22 13 14 14 22 14 12 13 22 12 12 13 12 10 11 13 ANSWER DOWNLOAD EXAMIANS APP