Answer Posted / rakshith
he volatile keyword is a type qualifier used to declare that an object can be modified in the program by something such as the operating system, the hardware, or a concurrently executing thread.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Which function cannot be overloaded c++?
What are the sizes and ranges of the basic c++ data types?
What are the advantages of using const reference arguments in a function?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.
Why do we need c++?
Incase of a function declaration, what is extern means?
What are the various operations performed on stack?
Explain Text Manipulation Routines?
What are the advantages of using friend classes?
What is the sequence of destruction of local objects?
What is a tree in c++?
What is the extension of c++?
What is array in c++ example?
What do you know about near, far and huge pointer?