-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha2ms4.c
executable file
·50 lines (40 loc) · 1.32 KB
/
a2ms4.c
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
48
49
50
/*
+--------------------------------------------------------*
| 2 0 1 8 ~ F A L L
| I P C : B T P
| 1 4 4 : 1 0 0
| ASSIGNMENT #2 MS# 4
|
| S E N E C A C O L L E G E
| ======== ======= ===== ======== ====== ======
| == == == == == == ==
| == ==== ==== == ==== ======
| == == == == == == ==
| == ====== ===== == ====== == ==
|
| !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
| !!! DO NOT ALTER THE CONTENTS OF THIS FILE !!!
| !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+--------------------------------------------------------*/
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include "contacts.h"
#include "contactHelpers.h"
void printSectionHeader(const char*);
int main(void)
{
printSectionHeader("Final A#2-Milestone #4");
contactManagerSystem();
return 0;
}
// Display specified test section header
void printSectionHeader(const char* testName)
{
printf("\n");
printf("------------------------------------------\n");
printf("------------------------------------------\n");
}
/*
EXPECTED OUTPUT:
<<< TO BE DETERMINED >>>
*/