what is the use of using linked list and array?
Answer Posted / nalini
No
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
How does #define work?
What is the c value paradox and how is it explained?
Define Spanning-Tree Protocol (STP)
Explain logical errors? Compare with syntax errors.
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
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]
What is a substring in c?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Difference between goto, long jmp() and setjmp()?
How can I split up a string into whitespace-separated fields?
Write a program of prime number using recursion.
How can I copy just a portion of a string?
What is a good data structure to use for storing lines of text?
Which are low level languages?
What is the difference between call by value and call by reference in c?