C Programming String concatenation means - Comparing the two strings to define the larger one. Merging two strings. Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. Merging two strings. Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. 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++);} 11 6 5 6 12 7 6 6 6 7 11 6 5 6 12 7 6 6 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 1289 Syntax error 0289 713 0713 1289 Syntax error 0289 713 0713 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine the Final Output:void main(){ printf("\nab"); printf("\bsi"); printf("\rha");} absiha asiha haasi hai absiha asiha haasi hai ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Register Queue Array Stack Linked list Register Queue Array Stack Linked list ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Comma operator Assignment operator Division operator Unary-operator Conditional operator Comma operator Assignment operator Division operator Unary-operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP