What is the difference between variable declaration and variable definition in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is real time system?what is the differance between hard and soft real time systems
What is || operator and how does it function in a program?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
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 the best way to comment out a section of code that contains comments?
What is the difference between volatile and const volatile?
How do I copy files?
What is indirect recursion? give an example?
12345 1234 123 12 1
sum of two integers values only other then integer it should print invalid input.
Why is a semicolon (;) put at the end of every program statement?
What is quick sort in c?