What are register variables?


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

Post New Answer

More C++ General Interview Questions

What is c++ course?

0 Answers  


What do you mean by pure virtual functions in C++? Give an example?

1 Answers  


What do you understand by zombie objects in c++?

0 Answers  


Write syntax to define friend functions in C++.

0 Answers   HAL,


What is a conversion constructor?

1 Answers  






Is c# written in c++?

0 Answers  


What is a virtual destructor?

2 Answers  


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 do you mean by internal linking and external linking in c++?

1 Answers  


write a program in c++ to implement stack using functions in header file stack.h

3 Answers   Google, Subex,


Can we use resume in error handling i.e. in the catch block

5 Answers   Infosys,


What is polymorphism & list its types in c++?

0 Answers  


Categories