#include <stdio.h>
#include <dos.h>
#include <io.h>
void main(void)
{
int handle;
if ((handle = creatnew("NEW.DAT", 0)) == -1)
printf("Error creating NEW.DAT/n");
else
{
printf("File successfully created/n");
close(handle);
}
}

1051

被折叠的 条评论
为什么被折叠?



