What is volatile and pragma? When they are used?
Answer / 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 |
Which operator can not be overloaded in C++?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
What is the difference between the indirection operator and the address of oper-ator?
Why do you use the namespace feature?
What is c++ manipulator?
What do c++ programmers do?
Where is atoi defined?
What is an adaptor class or Wrapper class?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
What is flush c++?
Difference between an inspector and a mutator
What is an opaque pointer?