Concat two string with most overlapped substring has to
removeĀ "abcd"+ "cdef" = "abcdef
Answer Posted / sham
Check the each char in the second string with first string
if it is not there then concatenate into the first string else
do not do.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is c compiled or interpreted?
What does s c mean in text?
What are the keywords in c?
What is floating point constants?
How many bytes is a struct in c?
How reliable are floating-point comparisons?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
How does free() know explain how much memory to release?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Process by which one bit pattern in to another by bit wise operation is?
What is huge pointer in c?
write a program to display all prime numbers
What is the symbol indicated the c-preprocessor?
What is const and volatile in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none