What are c++ files?


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

Post New Answer

More C++ General Interview Questions

Write a program to add three numbers in C++ utilizing classes.

0 Answers   TCS,


Write a program to calculate the BMI of a person using the formula BMI = weight/height2.

2 Answers  


What do you mean by static variables?

0 Answers  


Explain the differences between private, public and protected and give examples.

0 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,






Is C++ case sensitive a) False b) Depends on implementation c) True

0 Answers  


What is DlgProc?

0 Answers   C DAC,


On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?

0 Answers  


What is stoi in c++?

0 Answers  


Can we generate a C++ source code from the binary file?

2 Answers  


What is boyce codd normal form in c++?

0 Answers  


What does obj stand for?

0 Answers  


Categories