Favourite dice solution

What does the header stand for??

@aiman.mumtaz hey,iomanip is a input/output header file in C++. ()

. It is a function which is used to manipulate i/o statements.

There are two types of manipulators….

1)The one which works with input stream.

2)The one which works with output stream.

TYPES OF MANIPULATORS IN C++(few examples)

dec

Used to turn on dec flag

hex

Used to turn on hex flag

oct

Used to turn on oct flag

boolalpha

Used to turn on boolalpha flag

noboolalpha

Used to turn off boolalpha flag

setiosflags(fmtflags f)

Used to turn on flags in f

resetiosflags (fmtflags f)

Used to turn off flags in f

setbase(int base)

Used to set base

endl

usrd to

ws

Used to skip white space

Oh okay. thanks a lot

@aiman.mumtaz Welcome