what is volatile in c language?
Answer Posted / bhagyaraj m c
Both 1 and 2 comments are correct.
Just simplifying this
"Recompute\Refresh every time when ever the volatile is
found."
| Is This Answer Correct ? | 19 Yes | 7 No |
Post New Answer View All Answers
What is time complexity c?
What are the 4 types of unions?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What is the correct declaration of main?
Explain how can I convert a number to a string?
What is a good way to implement complex numbers in c?
What is function definition in c?
using for loop sum 2 number of any 4 digit number in c language
What is wrong with this statement? Myname = 'robin';
What are enums in c?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Do pointers take up memory?
Does sprintf put null character?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);