#include #include int main(int argc, char** argv) { // write the file // FILE* fp = fopen(argv[1], "w"); { short int buf[] = {0, 0, 2}; fwrite(buf, sizeof(short int), 3, fp); } fclose(fp); // exit gracefully // return(0); }