Floating point representation and output seems to be compiler dependent?
Answer / rohit sah
Regrettably, yes. The action of ios::setprecision() varies among compilers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Describe protected access specifiers?
What are member functions used in c++?
sir there is some problem with nokia5130c-2,when we are trying to upload movies from net then there is a error occurred"FORMAT NOT SUPPORTED" bt its all ready in 3gp format.please tell me what i do now?
What is different in C++, compare with unix?
What are files in c++?
Define private, protected and public access control.
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
give me some class & objects examples?
Eplain extern keyword?
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
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
Why did you leave your last job?