9 lines
239 B
C++
9 lines
239 B
C++
|
|
#include <charconv>
|
||
|
|
|
||
|
|
int main(int argc, char **argv) {
|
||
|
|
auto scientific = std::chars_format::scientific;
|
||
|
|
auto fixed = std::chars_format::fixed;
|
||
|
|
auto general = std::chars_format::general;
|
||
|
|
auto hex = std::chars_format::hex;
|
||
|
|
}
|