Answer Posted / shenbagavalli
The volatile keyword is a type qualifier used to declare
that an object can be modified in the program by something
such as the operating system, the hardware, or a
concurrently executing thread.
Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Explain the Difference between the New and Malloc keyword.
What is cohesion and coupling in c?
What is default value of global variable in c?
What is array within structure?
Explain what is the best way to comment out a section of code that contains comments?
How #define works?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Where local variables are stored in c?
Does c have circular shift operators?
What is the difference between c &c++?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What is the difference between fread buffer() and fwrite buffer()?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the purpose of sprintf() function?