How many characters are recognized by ANSI C++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is buffer and example?

0 Answers  


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.

2 Answers   Quark,


What are friend classes?

0 Answers  


Describe new operator?

0 Answers  


Which one between if-else and switch is more efficient?

0 Answers  






How to demonstrate the use of a variable?

0 Answers  


State the difference between delete and delete[].

0 Answers  


What is the difference between multiple and multilevel inheritance in c++?

0 Answers  


Explain polymorphism?

0 Answers  


Explain the use of this pointer?

0 Answers  


What is encapsulation in c++ with example?

0 Answers  


Differentiate between a template class and class template?

1 Answers  


Categories