What is do..while loops structure?


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

Post New Answer

More C++ General Interview Questions

How is computer programming useful in real life?

0 Answers  


What is a manipulative person?

0 Answers  


What is java and c++?

0 Answers  


Write about the use of the virtual destructor?

0 Answers  


What is the full form of c++?

0 Answers  






describe private access specifiers?

0 Answers  


What are structures and unions?

0 Answers  


What will happen if when say delete this ?

7 Answers  


Why is c++ a mid-level programming language?

0 Answers  


class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list

2 Answers   Quark,


write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement

4 Answers  


int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?

11 Answers   HCL, Mphasis,


Categories