diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4e0f5ed --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +main.out : main + ./main | tee main.out + +main : main.o get_student_id.o + cc main.o get_student_id.o -o main + +main.o : main.c + cc -c main.c + +get_student_id.o : get_student_id.c + cc -c get_student_id.c \ No newline at end of file diff --git a/README b/README index 74ddb0e..30615a0 100644 --- a/README +++ b/README @@ -1,3 +1,3 @@ Contributors: Toby Dylan Hocking -ADD YOUR NAME HERE \ No newline at end of file +Aiden Gabriel Halili \ No newline at end of file diff --git a/get_student_id.c b/get_student_id.c index 8ffa600..b3c4c8f 100644 --- a/get_student_id.c +++ b/get_student_id.c @@ -1,3 +1,3 @@ int get_student_id(void){ - return 3331212; + return 5687070; } diff --git a/main.out b/main.out new file mode 100644 index 0000000..7e81117 --- /dev/null +++ b/main.out @@ -0,0 +1 @@ +Student ID: 5687070