C Programming String concatenation means - Combining two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Merging two strings. Extracting a substring out of a string. Combining two strings. Partitioning the string into two strings. Comparing the two strings to define the larger one. Merging two strings. Extracting a substring out of a string. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the following code's output if choice = 'R'?switch(choice){ case 'R' : printf("RED"); case 'W' : printf("WHITE"); case 'B' : printf("BLUE"); default : printf("ERROR");break;} RED ERROR RED WHITE BLUE ERROR RED RED WHITE BLUE ERROR RED ERROR RED WHITE BLUE ERROR RED RED WHITE BLUE ERROR ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } Syntax error 713 0289 1289 0713 Syntax error 713 0289 1289 0713 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?void main(){ char str1[] = "abcd"; char str2[] = "abcd"; if(str1==str2) printf("Equal"); else printf("Unequal");} Error Equal None of these. Unequal Error Equal None of these. Unequal ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 50, 13, 24, 13 50, 13, 11, 13 13, 10, 24, 50 50, 13, 24, 50 13, 13, 24, 13 50, 13, 24, 13 50, 13, 11, 13 13, 10, 24, 50 50, 13, 24, 50 13, 13, 24, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope No scope at all File scope Local scope Block scope Function scope No scope at all File scope Local scope Block scope ANSWER DOWNLOAD EXAMIANS APP