what is volatile in c language?
Answer Posted / justin arokiaraj.r
Volatile is used for direct memory access.it can be updated by both hardware and software .so unused volatile will not be optimized in compilation
.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Write a program with dynamically allocation of variable.
Why is this loop always executing once?
Do variables need to be initialized?
Are the outer parentheses in return statements really optional?
Do you know the use of 'auto' keyword?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
Why n++ execute faster than n+1 ?
What is openmp in c?
Are enumerations really portable?
What is string length in c?
What is the condition that is applied with ?: Operator?
What is a stream?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are the 5 types of inheritance in c ++?
string reverse using recursion