aboutsummaryrefslogtreecommitdiffstats
path: root/csci4061/091420_breakout/major.c
diff options
context:
space:
mode:
Diffstat (limited to 'csci4061/091420_breakout/major.c')
-rw-r--r--csci4061/091420_breakout/major.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/csci4061/091420_breakout/major.c b/csci4061/091420_breakout/major.c
new file mode 100644
index 0000000..cfc9cef
--- /dev/null
+++ b/csci4061/091420_breakout/major.c
@@ -0,0 +1,15 @@
+#include "include/main.h"
+#include "include/major.h"
+
+/*
+ * Write getMajor function
+ * void getMajor(char * major);
+ * Prints a prompt "Enter your major: " to get an major,
+ * Reads in the user's major
+ */
+
+void getMajor(char * major) {
+ printf("Enter your major: ");
+ fgets(major, maxLen, stdin);
+ fflush(stdin);
+} \ No newline at end of file