What is a volatile variable in c++?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
A volatile variable indicates to the compiler that the variable can be changed at any time, preventing optimizations.
| Is This Answer Correct ? | 0 Yes | 0 No |
A volatile variable indicates to the compiler that the variable can be changed at any time, preventing optimizations.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why is c++ so fast?
Does c++ have a hash table?
What is a loop? What are different types of loops in c++?
how to find the maximum of 10 numbers ?
What does n mean in c++?
How do you declare A pointer to a function which receives nothing and returns nothing
What are the different types of polymorphism?
What is the disadvantage of using a macro?
What is the full form of ios?
What is a storage class?
pls help.. paper bills.. 1000, 500, 100, 50, 20, 10, 5, 1.. create a program that will count all the paper bills in the number being input.. example: enter a number: 3886 there is/are: 3 ->1000 1 ->500 3 ->100 1 ->50 1 ->20 1 ->10 1 ->5 1 ->1 example2: enter a number: 728 there is/are: 0 ->1000 1 ->500 2 ->100 0 ->50 1 ->20 0 ->10 1 ->5 3 ->1
Write a program using display() function which takes two arguments.