Skip to content

Instantly share code, notes, and snippets.

@akira093
Created May 12, 2013 15:00
Show Gist options
  • Save akira093/5563844 to your computer and use it in GitHub Desktop.
Save akira093/5563844 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char const* argv[])
{
FILE *fp;
int i;
double data[255] = {0};
fp = fopen("ahya.bat", "wb");
fwrite(data, sizeof(double), 255, fp);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment