Define a pdb file.
What is the full form nasa?
Define 'std'.
Will a catch statement catch a derived exception if it is looking for the base class?
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
How a modifier is similar to mutator?
What is the handle class?
What is late binding c++?
What sorting algorithm does c++ use?
When is the destructor called?
What are the techniques you use for debugging?
sizeof- is it functioning statically or dynamically?