Hi Every one......... Please Any body give me the answer for
my question. Is it possible to print the word "PRINT F",
without using printf() statement in C-Language.
Answer Posted / veerababu
printf(" ");
| Is This Answer Correct ? | 4 Yes | 16 No |
Post New Answer View All Answers
What are local variables 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]
Is fortran faster than c?
When should volatile modifier be used?
What are pointers in C? Give an example where to illustrate their significance.
What are register variables? What are the advantage of using register variables?
What is selection sort in c?
What does 1f stand for?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is meant by high-order and low-order bytes?
What are the types of functions in c?
How to delete a node from linked list w/o using collectons?
Does c have circular shift operators?
What is a good data structure to use for storing lines of text?
Write a program to check prime number in c programming?