Skip to content

Update string-and-i-o-formatting-modern-cpp.md #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 11, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/cpp/string-and-i-o-formatting-modern-cpp.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ translation.priority.ht:
# String and I/O Formatting (Modern C++)
C++ [iostreams](../standard-library/iostream.md) are capable of formatted string I/O. For example, the following code shows how to set cout to format an integer to output in hexadecimal, first saving off the current state and re-setting afterwards, because once state formatting is passed to cout, it stays that way until changed, not just for the one line of code.

```fortran
```cpp
#include <iostream>
#include <iomanip>

Expand Down Expand Up @@ -89,4 +89,4 @@ int main() 
[C++ Standard Library](../standard-library/cpp-standard-library-reference.md)
[\<iostream>](../standard-library/iostream.md)
[\<limits>](../standard-library/limits.md)
[\<iomanip>](../standard-library/iomanip.md)
[\<iomanip>](../standard-library/iomanip.md)