how to sort two array of characters and make a new array of
characters.
Answer Posted / vijay
first merge two arrays and eliminate duplicate elements and
we can sort it
| Is This Answer Correct ? | 5 Yes | 3 No |
Post New Answer View All Answers
What is meant by keywords in c?
What is the difference between int main and void main?
What is d scanf?
Explain how can I write functions that take a variable number of arguments?
What are register variables? What are the advantage of using register variables?
What is the difference between struct and typedef struct in c?
Write a program to swap two numbers without using third variable?
What is #include cctype?
Explain what header files do I need in order to define the standard library functions I use?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
application attempts to perform an operation?
What library is sizeof in c?
Why doesnt this code work?
What’s the special use of UNIONS?
What are identifiers and keywords in c?