What do you mean by enumerated data type?
No Answer is Posted For this Question
Be the First to Post Answer
What does std :: flush do?
What are signs of manipulation?
Difference between inline functions and macros?
Why c++ is so important?
How compile and run c++ program in turbo c++?
What is virtual destructor ans explain its use?
What are files in c++?
without if else statement can be written ah
How would you obtain segment and offset addresses from a far address of a memory location?
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 doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
Differences between private, protected and public and give examples.