Define a nested class. Explain how it can be useful.
No Answer is Posted For this Question
Be the First to Post Answer
What is a tree in c++?
Why do we use classes in c++?
What does override mean in c++?
how many controls can we place on single form.
Write a program to concatenate two strings.
What are templates? where we should use it?
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\"; } };
write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX
What is basic if statement syntax?
what is Loop function? What are different types of Loops?
Describe about storage allocation and scope of global, extern, static, local and register variables?
How can a struct in c++ differs from a struct in c?