How do I run c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by entry controlled loop? What all C++ loops are exit controlled?
Can a constructor throw a exception? How to handle the error when the constructor fails?
What are destructors?
Explain selection sorting. Also write an example.
Who was the creator of c++?
What is the fastest c++ compiler?
How a macro differs from a template?
What is near, far and huge pointers? How many bytes are occupied by them?
What are the advantages of using a pointer?
Are strings mutable in c++?
Find out the bug in this code,because of that this code will not compile....... #include <iostream> #include <new> #include <cstring> using namespace std; class balance { double cur_bal; char name[80]; public: balance(double n, char *s) { cur_bal = n; strcpy(name, s); } ~balance() { cout << "Destructing "; cout << name << "\n"; } void set(double n, char *s) { cur_bal = n; strcpy(name, s); } void get_bal(double &n, char *s) { n = cur_bal; strcpy(s, name); } }; int main() { balance *p; char s[80]; double n; int i; try { p = new balance [3]; // allocate entire array } catch (bad_alloc xa) { cout << "Allocation Failure\n"; return 1; }
What is the importance of mutable keyword?