void main()
{
int i=5;
printf("%d",i+++++i);
}
Post New Answer View All Answers
What's the right way to use errno?
State the difference between x3 and x[3].
What is a shell structure examples?
Under what circumstances does a name clash occur?
a c code by using memory allocation for add ,multiply of sprase matrixes
Explain how do you convert strings to numbers in c?
What is mean by data types in c?
What is the difference between NULL and NUL?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
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 purpose of the statement: strcat (S2, S1)?
What is optimization in c?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Are there any problems with performing mathematical operations on different variable types?
Explain About fork()?