Skip to content

Instantly share code, notes, and snippets.

@iwadon
Last active December 20, 2015 01:39
Show Gist options
  • Save iwadon/6050962 to your computer and use it in GitHub Desktop.
Save iwadon/6050962 to your computer and use it in GitHub Desktop.
#include <fstream>
int main()
{
static const char data[1] = {0x0a};
std::ofstream ofs;
ofs.open("out.bin");
ofs.write(data, sizeof data);
ofs.close();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment