From 9b4fd1e5c15c194480fa89efb564b72f50dc9ba2 Mon Sep 17 00:00:00 2001 From: Robert Preston Date: Tue, 30 Jun 2026 09:07:09 +1000 Subject: [PATCH] finish copy.c demo --- c_programming/files/copy.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/c_programming/files/copy.c b/c_programming/files/copy.c index 2575826..bda3259 100644 --- a/c_programming/files/copy.c +++ b/c_programming/files/copy.c @@ -11,7 +11,7 @@ int main(void) FILE *output = fopen("out.txt", "w"); if (output == NULL) { - perror("Failed to open out.txt") + perror("Failed to open out.txt"); fclose(input); return 1; } @@ -25,8 +25,8 @@ int main(void) /* TODO: + clone: clone git repository and start working on copy.c -- first: go through part 3 of cs50 week 4 memory section.pdf -- make: get copy.c compiling with make -- complete: fix all problems and ensure the demo program works as intended -- wait: if I need to go work on another file, it will go in a wait: task. ++ first: go through part 3 of cs50 week 4 memory section.pdf ++ make: get copy.c compiling with make ++ complete: fix all problems and ensure the demo program works as intended ++ wait: if I need to go work on another file, it will go in a wait: task. */