When do we run a shell in the unix system?
No Answer is Posted For this Question
Be the First to Post Answer
What is the basic structure of a c++ program?
What are the advantage of using register variables?
What are the classes 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 main function c++?
Explain the concept of copy constructor?
what is oops and list its features in c++?
What is null pointer and void pointer?
What it is and how it might be called (2 methods).
What does extern mean in a function declaration in c++?
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
What is private public protected in c++?