Quantcast
Channel: Articles– GeeksforGeeks
Viewing all articles
Browse latest Browse all 339

Understanding “volatile” qualifier in C

$
0
0
The volatile keyword is intended to prevent the compiler from applying any optimizations on objects that can change in ways that cannot be determined by the compiler. Objects declared as volatile are omitted from optimization because their values can be changed by code outside the scope of current code at any time. The system always […]

Viewing all articles
Browse latest Browse all 339

Trending Articles