Why we use int main and void main?
No Answer is Posted For this Question
Be the First to Post Answer
why division operator not work in case of float constant?
Function to find the given number is a power of 2 or not?
What is volatile
How to print India by nested loop? I IN IND INDI INDIA
What does. int *x[](); means ?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is C language Terminator?
Can I pass constant values to functions which accept structure arguments?
How do you print only part of a string?
write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
What is static memory allocation? Explain
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]