how many header file is in C language ?
Answer Posted / prashant gupta
10 header files in c.
| Is This Answer Correct ? | 16 Yes | 51 No |
Post New Answer View All Answers
What is a union?
What does %c mean in c?
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]
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Explain can you assign a different address to an array tag?
How is a macro different from a function?
What is %s and %d in c?
What is the difference between pure virtual function and virtual function?
Is null a keyword in c?
Should a function contain a return statement if it does not return a value?
What does %c do in c?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Explain bit masking in c?
What are the ways to a null pointer can use in c programming language?
Is c still relevant?