aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2020-09-28 08:45:51 -0500
committerMatthew Strapp <msattr@gmail.com>2020-09-28 08:45:51 -0500
commita541b76971283788b64184b1b50264d99114472c (patch)
treec9494792f8e5c7f2927a3fdb35cf0d571277be31
parentno message provided (diff)
downloadhomework-a541b76971283788b64184b1b50264d99114472c.tar
homework-a541b76971283788b64184b1b50264d99114472c.tar.gz
homework-a541b76971283788b64184b1b50264d99114472c.tar.bz2
homework-a541b76971283788b64184b1b50264d99114472c.tar.lz
homework-a541b76971283788b64184b1b50264d99114472c.tar.xz
homework-a541b76971283788b64184b1b50264d99114472c.tar.zst
homework-a541b76971283788b64184b1b50264d99114472c.zip
Do breakout
-rw-r--r--csci4061/092820_breakout/main.c36
-rw-r--r--csci4061/092820_breakout/sample.txt1
-rw-r--r--csci4061/092820_breakout/sample_copy.txt1
3 files changed, 38 insertions, 0 deletions
diff --git a/csci4061/092820_breakout/main.c b/csci4061/092820_breakout/main.c
new file mode 100644
index 0000000..0757a06
--- /dev/null
+++ b/csci4061/092820_breakout/main.c
@@ -0,0 +1,36 @@
+/*
+* 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/csci4061/092820_breakout/sample.txt b/csci4061/092820_breakout/sample.txt
new file mode 100644
index 0000000..e568c7b
--- /dev/null
+++ b/csci4061/092820_breakout/sample.txt
@@ -0,0 +1 @@
+abcdefghijklmnopqrstuvwxya \ No newline at end of file
diff --git a/csci4061/092820_breakout/sample_copy.txt b/csci4061/092820_breakout/sample_copy.txt
new file mode 100644
index 0000000..e568c7b
--- /dev/null
+++ b/csci4061/092820_breakout/sample_copy.txt
@@ -0,0 +1 @@
+abcdefghijklmnopqrstuvwxya \ No newline at end of file