Скачиваний:
50
Добавлен:
02.05.2014
Размер:
362 б
Скачать
//kyrs_cre.cpp
extern char *file;
void create(){
textcolor(2);
cprintf("Please enter name new file: ");
char *name;
scanf("%s",name);
cprintf("\r\nCreating new file...\r\n");
FILE *f;
if ((f=fopen(name,"w"))==NULL){
textcolor(4);
cprintf("Error!!!");
getch();
exit(1);
}
file=new char(strlen(name));
strcpy(file,name);
fclose(f);
open(file);
}
Соседние файлы в папке Курсовая работа - Ведомость зарплаты