What is the difference between while and do while loop? Explain with examples.
No Answer is Posted For this Question
Be the First to Post Answer
Why can you not make a constructor as const?
What is the difference between public and private data members?
What are c++ tokens?
Why do we use using namespace std in c++?
What is a storage class used in c++?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What do you mean by friend class & friend function in c++?
How the keyword struct is different from the keyword class in c++?
What is a responder chain?
Explain operator overloading.
What is the sequence of destruction of local objects?