Explain the register storage classes in c++.
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between delegation and implemented-in-terms-of?
Should you pass exceptions by value or by reference?
Explain the concept of memory leak?
List the merits and demerits of declaring a nested class in C++?
Which compiler does turbo c++ use?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
Explain the difference between struct and class in terms of access modifier.
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
what is object?
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 are the important differences between c++ and java?
How one would use switch in a program?