Answer Posted / ratnesh rai
c is a high level programing language
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Is c a great language, or what?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
What is stack in c?
What is scope and lifetime of a variable in c?
How can I recover the file name given an open stream or file descriptor?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
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]
What is d'n in c?
Linked lists -- can you tell me how to check whether a linked list is circular?
What is c variable?
What is || operator and how does it function in a program?
What does main () mean in c?
What is c standard library?
What is exit() function?
Why is %d used in c?