Which function should be used to free the memory allocated by calloc()?
No Answer is Posted For this Question
Be the First to Post Answer
which operator is used for performing an exponential operation a) > b) ^ c) none
How the delete operator differs from the delete[]operator?
Can you write a function similar to printf()?
If a function doesn’t return a value, how do you declare the function?
what is the C++
Which software is used to run c++ program?
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 various oops concepts in c++?
What is difference between n and endl in c++?
What's the most powerful programming language?
What causes a runtime error c++?
What is the difference between "calloc" and "malloc"?