What is #include iomanip?


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 swap 2 chars without using a third varable? char *s = "A"; char *p = "B";

7 Answers   CTS,


You want to link a c++ program to c functions. How would you do it?

0 Answers  


catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;

2 Answers   Quark,


To which numbering system can the binary number 1101100100111100 be easily converted to?

0 Answers  


How the compilers arranges the various sections in the executable image?

1 Answers  






In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that

0 Answers  


What is the header file for setw?

0 Answers  


when can we use copy constructor?

6 Answers   HP,


What is a null object in c++?

0 Answers  


Write a Program for find and replace a character in a string.

0 Answers  


What does floor mean in c++?

0 Answers  


What is the object serialization?

0 Answers  


Categories