Is empty stack c++?
No Answer is Posted For this Question
Be the First to Post Answer
Why is "using namespace std;" considered bad practice?
What is the use of vtable?
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; }
what is polymorphism?
What do you understand by zombie objects in c++?
What is meant by entry controlled loop?
0 Answers Agilent, ZS Associates,
Why do we use string in c++?
Explain queue. How it can be implemented?
What are pointer-to-members? Explain.
How can a called function determine the number of arguments that have been passed to it?
What is the importance of mutable keyword?
What is implicit pointer in c++?