how many header file is in C language ?
Answer Posted / anupran
there are total 24 header files in C.
15 according to C89 & 9 further added in C99.
therefore, total 24.
| Is This Answer Correct ? | 18 Yes | 8 No |
Post New Answer View All Answers
What is the difference between the local variable and global variable in c?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Write a code to remove duplicates in a string.
How can I make sure that my program is the only one accessing a file?
What is calloc in c?
What is #ifdef ? What is its application?
Write a factorial program using C.
Where register variables are stored in c?
hi, which software companys will take,if d candidate's % is jst 55%?
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]
In c programming language, how many parameters can be passed to a function ?
Are there any problems with performing mathematical operations on different variable types?
What is the role of && operator in a program code?
How can I read and write comma-delimited text?
What is the main difference between calloc () and malloc ()?