123456789101112
#include <stdio.h> int main() { FILE * abc; abc = fopen ("dokas.txt","a"); if (abc!=NULL) { fclose (abc); } return 0; }