diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-05-24 11:18:46 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-05-24 11:19:55 -0500 |
commit | 7a73162607544204032aa66cce755daf21edebda (patch) | |
tree | 58578e01f15f34a855d99c32898db9d7a1603e67 /OLD/csci4061/092820_breakout | |
parent | do some stuff (diff) | |
download | homework-7a73162607544204032aa66cce755daf21edebda.tar homework-7a73162607544204032aa66cce755daf21edebda.tar.gz homework-7a73162607544204032aa66cce755daf21edebda.tar.bz2 homework-7a73162607544204032aa66cce755daf21edebda.tar.lz homework-7a73162607544204032aa66cce755daf21edebda.tar.xz homework-7a73162607544204032aa66cce755daf21edebda.tar.zst homework-7a73162607544204032aa66cce755daf21edebda.zip |
Graduate
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'OLD/csci4061/092820_breakout')
-rw-r--r-- | OLD/csci4061/092820_breakout/main.c | 36 | ||||
-rw-r--r-- | OLD/csci4061/092820_breakout/sample.txt | 1 | ||||
-rw-r--r-- | OLD/csci4061/092820_breakout/sample_copy.txt | 1 |
3 files changed, 0 insertions, 38 deletions
diff --git a/OLD/csci4061/092820_breakout/main.c b/OLD/csci4061/092820_breakout/main.c deleted file mode 100644 index 0757a06..0000000 --- a/OLD/csci4061/092820_breakout/main.c +++ /dev/null @@ -1,36 +0,0 @@ -/* -* Recitation Section Number: -* Breakout Number: -* Member Name -* Member Name -* Member Name -* Member Name -*/ - - -#include<stdio.h> -#include <stdlib.h> // For exit() - - -int main() { - - //STEP 1 - //Your code to open the file copy the file and close the file - FILE* fread = fopen("sample.txt", "r"); - FILE* fwrite = fopen("sample_copy.txt", "w"); - int bufsize = 30; - char str[bufsize]; - fgets(str, bufsize, fread); - fputs(str, fwrite); - - //STEP 2 - //Your code to read the text and add the numbers - char* text = "sample text 2 4 5"; - int a=0, b=0, c=0; - char* waste1; char* waste2; - sscanf(text, "%s %s %d %d %d", &waste1, &waste2, &a, &b, &c); - printf("%d\n", a+b+c); - - return 0; - -}
\ No newline at end of file diff --git a/OLD/csci4061/092820_breakout/sample.txt b/OLD/csci4061/092820_breakout/sample.txt deleted file mode 100644 index e568c7b..0000000 --- a/OLD/csci4061/092820_breakout/sample.txt +++ /dev/null @@ -1 +0,0 @@ -abcdefghijklmnopqrstuvwxya
\ No newline at end of file diff --git a/OLD/csci4061/092820_breakout/sample_copy.txt b/OLD/csci4061/092820_breakout/sample_copy.txt deleted file mode 100644 index e568c7b..0000000 --- a/OLD/csci4061/092820_breakout/sample_copy.txt +++ /dev/null @@ -1 +0,0 @@ -abcdefghijklmnopqrstuvwxya
\ No newline at end of file |