Answer Posted / priya
In computer programming,a variable or object declared
with the volatile keyword may be modified externally
from the declaring object. Variables declared to be
volatile will not be optimized by the compiler
because the compiler must assume that their values
can change at any time.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are 3 types of structures?
What is external variable in c?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Can the size of an array be declared at runtime?
What is the most efficient way to store flag values?
What is the return type of sizeof?
How do you convert strings to numbers in C?
What is a pointer variable in c language?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is realloc in c?
How do I read the arrow keys? What about function keys?
What are the different types of objects used in c?