What is iomanip c++?


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

Post New Answer

More C++ General Interview Questions

We use library functions in the program, in what form they are provided to the program?

0 Answers  


How can you specify a class in C++?

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


difference between the c++ and c languages

4 Answers   Wipro,


Define what is constructor?

0 Answers  






whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };

5 Answers   Huawei,


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

5 Answers   Infosys,


What are shallow and deep copy?

0 Answers  


What is the identity function in c++? How is it useful?

0 Answers  


Explain unexpected() function?

0 Answers  


What is else syntax in c++?

0 Answers  


class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.

2 Answers   Quark,


Categories