What is c++ vb?
No Answer is Posted For this Question
Be the First to Post Answer
How many characters are recognized by ANSI C++?
what is pulse code modulation?
What does '\r' and '\b' mean? Please explain with example.
Is c++ a programming language?
What are the benefits of c++?
What is function declaration in c++ with example?
structure contains int, char, float how it behaves for big endian and little endian?
Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.
Explain Text Manipulation Routines?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
What are special characters c++?
What is extern c++?