Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

#include<iomanip.h> header file is not available why?

0 votes
asked Jul 28, 2021 by Syed Muhammad Ahmad Shah (120 points)

1 Answer

0 votes
answered Oct 15, 2021 by Uther-Pendragon (140 points)
It is #include <iomanip> without the .h extension.

In C headers have a .h extension like stdlib.h and C++ headers don't have.

Normally you use for C headers the following statement: #include "stdio.h"

and for C++ headers: #inlcude <iostream>
commented Sep 23, 2022 by Hameeda Farooqui (100 points)
for me the #include <iomanip> not getting included, when trying to do program as was done before, not working, states set not defined.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...