Mega Code Archive

 
Categories / C++ Tutorial / Development
 

OR together two or more flags

#include <iostream> using namespace std; int main() {   cout.setf(ios::showpoint | ios::showpos);   cout << 100.0;    return 0; } +100.000