What is an volatile variable?

Answer Posted / vivek satasia

IT IS SUCH A VARIABLE WHICH IS NOT MODIFIED BY ITS PROGRAM
BUT IT CAN BE MODIFIED OUTSIDE PROGRAM ENVIRONMENT.

Is This Answer Correct ?    6 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where we use clrscr in c?

714


The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1639


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5065


I have a varargs function which accepts a float parameter?

583


How can you call a function, given its name as a string?

719






What is pragma in c?

636


What is ctrl c called?

604


write a program to concatenation the string using switch case?

1566


What are the key features in c programming language?

622


What is the difference between struct and union in C?

580


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

819


What are the features of c languages?

633


What is the newline escape sequence?

593


Is register a keyword in c?

641


to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?

1577