college/Spring-2023/CS-2124/Assignment-1/src/C1.c

17 lines
264 B
C
Raw Normal View History

2024-01-28 22:02:25 -06:00
#include "src.h"
#include <stdio.h>
void c1() {
FILE *f = fopen(FNAME, "w+");
solve(1, "Creation of a new file",
fmtstr("Filename: %s\nLocation: %s", FNAME, get_file_path(FNAME)));
}
int main() {
print_header();
c1();
return 0;
}