InterviewSolution
Saved Bookmarks
| 1. |
Name the header files that shall be needed for the following code:void main() {char Text[]="Computer";cout<<setw(15)<<Text;} |
|
Answer» (i) iomanip.h for setw() (ii) iostream.h for cout |
|