Answer Posted / narendra
arrays are very faster because it stores a sequential
block of memory and similar data types
pointers stores only adders of variable
but arrays are stores similar data types
| Is This Answer Correct ? | 9 Yes | 4 No |
Post New Answer View All Answers
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]
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What does %c mean in c?
What is an expression?
Explain how does free() know explain how much memory to release?
Explain what is meant by high-order and low-order bytes?
What are the 4 types of functions?
What is break in c?
What are the types of pointers in c?
Explain the array representation of a binary tree in C.
Explain is it valid to address one element beyond the end of an array?
What are pointers?
What does double pointer mean in c?
Explain continue keyword in c
How do I use void main?