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
Can the sizeof operator be used to tell the size of an array passed to a function?
What are void pointers in c?
Why is main function so important?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What is equivalent to ++i+++j?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Define circular linked list.
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Explain how do you print an address?
What are the 32 keywords in c?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
what is reason of your company position's in india no. 1.
How does placing some code lines between the comment symbol help in debugging the code?
What's a good way to check for "close enough" floating-point equality?
Why does everyone say not to use gets?