Can we include one C program into another C program if yes how?
Answer Posted / krishhna
We can include the another c program so before that the program which you are going to include should be coppied to c:>tc\include directory
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the use of pragma in embedded c?
Why c language?
What is structure padding in c?
Describe static function with its usage?
Explain the binary height balanced tree?
What is call by value in c?
What is dynamic variable in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
Why do we use namespace feature?
If errno contains a nonzero number, is there an error?
What is #ifdef ? What is its application?
Write a program to print ASCII code for a given digit.
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is 2 d array 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]