What is clrscr in c?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me about low level programming languages.
Write a C/C++ program that connects to a MySQL server and displays the global TIMEZONE.
What is New modifiers?
When should we use pointers in a c program?
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]
Write a program that accept anumber in words
5) Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.without using big int and exponential function
Explain the concept and use of type void.
what is the difference b/w compiler and debugger?
what is the maximum limit of row and column of a matrix in c programming. in linux .
difference between loading and linking
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?