forked from kat09tails/GroupR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroup.c
More file actions
47 lines (36 loc) · 1021 Bytes
/
Copy pathgroup.c
File metadata and controls
47 lines (36 loc) · 1021 Bytes
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
37
38
39
40
41
42
43
44
45
46
47
#include <stdio.h>
#include <stdlib.h>
void KatRInfo(){
printf("Please Complete KatRInfo\n");
}
void AlecRichardsonInfo(){
printf("******Alec Richardson******\n");
printf("I am a junior.\n");
printf("My major is computer science.\n");
printf("My hobbies include mountain biking, hiking, reading, and music.\n");
printf("I grew up in Richland, Washington.\n");
}
void MarchusRichlieInfo(){
printf("Please Complete MarchusRichlieInfo\n");
}
void EthanRocheleauInfo(){
printf("Please Complete EthanRocheleauInfo\n");
}
void JanRoddyInfo(){
printf("Please Complete JanRoddyInfo\n");
}
int main(void){
printf("Our group name is: GroupR\n");
printf("These are our members:\n");
printf("Kathryn Reese\n");
printf("Alec Richardson\n");
printf("Marcus Richlie\n");
printf("Jan Roddy\n");
printf("\n");
KatRInfo();
AlecRichardsonInfo();
MarchusRichlieInfo();
EthanRocheleauInfo();
JanRoddyInfo();
return 0;
}