#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / sravani
i got the answer 1,3,4
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What are the advantages and disadvantages of a heap?
Tell us the use of fflush() function in c language?
What are enumerated types?
Is it possible to initialize a variable at the time it was declared?
Explain main function in c?
Explain do array subscripts always start with zero?
How do I create a directory? How do I remove a directory (and its contents)?
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]
Explain how do you use a pointer to a function?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
What are the disadvantages of a shell structure?
What is function definition in c?
What are the modifiers available in c programming language?
When is a null pointer used?
What is scope of variable in c?