cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
how do i make a binary file?
how do i make a binary file?
May 21, 2017 at 2:58am UTC
seungyeon
(129)
i want to make a binary file and print "Hello world"
May 21, 2017 at 3:15am UTC
JLBorges
(13770)
std::ofstream(
"my_binary_file.bin"
,
std::ios::binary
) <<
"Hello world"
;
Topic archived. No new replies allowed.