#include #include int main(int argc, char *argv[]) { FILE *p = fopen ("teste.txt", "w"); fputc('M', p); fclose(p); return 0; }