How much do coding jobs pay?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

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; }

2 Answers   Impetus,


What are the popular tools used to detect memory leaks in c++

4 Answers   TATA,


What is namespace std; and what is consists of?

0 Answers  


What is purpose of new operator?

0 Answers  


What is the advantage of an external iterator.

0 Answers  






How much do coding jobs pay?

0 Answers  


Describe the main characteristics of static functions?

1 Answers  


Do you know about C++ 11 standard?

0 Answers   Agilent, ZS Associates,


Why is polymorphism useful?

0 Answers  


How can I learn dev c++ programming?

0 Answers  


Which is best ide for c++?

0 Answers  


What is heap sort in c++?

0 Answers  


Categories