What is the function of the keyword ‘volatile’ in C++?
Answer Posted / nashiinformaticssolutions
A qualifier known as the volatile keyword can be used on a variable to let the compiler know that the value of the variable could change at any time. The primary goal of utilizing volatile is to stop source code optimizations on objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is polymorphism and its type in c++?
What is problem with overriding functions?
What is enum c++?
Which field is used in c++?
What is the disadvantage of using a macro?
What is the function of I/O library in C++ ?
Difference between delete and free.
Write a program in c++ to print the numbers from n to n2 except 5 and its multiples
What is a far pointer? where we use it?
What is fixed in c++?
Why is c++ still popular?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
write asingle linked list which read from two list & the do the following 1 sort the prime & nonprime num (prime should be less tn nonprime) 2 each node has a prime num followd by nonprime 3 add a new node into its sutable plce 4 erase the most three duplicated non prime num 5 find the least duplicated prime num
What is runtime polymorphism in c++?
What do you mean by late binding?