How do you instruct your compiler to print the contents of the intermediate file showing the effects of the preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between struct and class in terms of access modifier.
How does class accomplish data hiding in c++?
In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.
What is tellg () in c++?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
Can you be bale to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
How can you link a c++ program to c functions?
Is there a datatype string in c++?How is the memory allocation?
What is the average salary of a c++ programmer?
What is the use of map in c++?
Explain the differences between list x; & list x();.