resetiosflags (ios_base::fmtflags mask);
It Unsets the format flags specified by parameter mask.Behaves as if member unsetf were called with mask as argument on the stream on which it is inserted/extracted as a manipulator (it can be inserted/extracted on input streams or output streams)
Syntax:resetiosflags (ios_base::fmtflags mask);
Example:#include // std::cout, std::hex, std::endl
#include // std::setiosflags, std::resetiosflags
int main () {
std::cout << std::hex << std::setiosflags (std::ios::showbase);
std::cout << 100 << std::endl;
std::cout << std::resetiosflags(std::ios::showbase) << 100 << std::endl;
return 0;
}
License.
All information of this service is derived from the free sources and is provided solely in the form of quotations.
This service provides information and interfaces solely for the familiarization (not ownership) and under the "as is" condition.
Copyright 2016 © ELTASK.COM. All rights reserved.
Site is optimized for mobile devices.
Downloads: 174 / 159177993. Delta: 0.00275 с