Do you know about C++ 11 standard?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
When should we use container classes instead of arrays?
What are the extraction and insertion operators in c++?
How do I use turbo c++?
Explain class invariant.
What are function poinetrs? where are they used?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
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; }
Why cstdlib is used in c++?
Can you explain the term "resource acquisition is initialization?"
When is the destructor called?
What is dynamic and static typing?