What is the relation between # and include<stdio.h>
Answer Posted / priyanka
actually, in C, every keyword has some specific value some
specific meaning and those meanings of keywords are already
been stored in header files like
<stdio.h>,<conio.h>,<math.h> etc.... so to make computer
understood the meaning of printf, scanf like keywords, we
have to use header files in begining of the prog... and #
is a preprocessor.... this tells computer that now u be
ready to write a prog...
this is wat i think.... though i dnt hav technical
knowledge still i tried to xplain.....
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How can I sort more data than will fit in memory?
Why can’t we compare structures?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Are the outer parentheses in return statements really optional?
How can I get random integers in a certain range?
What is the scope of an external variable in c?
What are the advantages of union?
What is const and volatile in c?
Can we use any name in place of argv and argc as command line arguments?
How can I recover the file name given an open stream?
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 a lookup table in c?
What are the disadvantages of c language?
Differentiate fundamental data types and derived data types in C.
What is property type c?