aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/csci4061/092820_breakout/main.c
blob: 0757a06030d00b0db4ceedb4c4d3f540b7e8156f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;

}