Answer Posted / siva
we can use more than one variable
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is 2c dna?
What is an auto keyword in c?
What is selection sort in c?
What is scanf_s in c?
Why c is called procedure oriented language?
When should the volatile modifier be used?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
How do you initialize pointer variables?
How can I convert a number to a string?
How do I read the arrow keys? What about function keys?
Why C language is a procedural language?
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 wrong in this statement?
How can I make sure that my program is the only one accessing a file?