What is an volatile variable?

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


Please Help Members By Posting Answers For Below Questions

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

2822


Explain the Difference between the New and Malloc keyword.

886


What is cohesion and coupling in c?

798


What is default value of global variable in c?

760


What is array within structure?

835


Explain what is the best way to comment out a section of code that contains comments?

935


How #define works?

851


Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..

847


Where local variables are stored in c?

754


Does c have circular shift operators?

972


What is the difference between c &c++?

851


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.

2030


What is the difference between fread buffer() and fwrite buffer()?

909


Explain what will be the outcome of the following conditional statement if the value of variable s is 10?

1010


What is the purpose of sprintf() function?

820