diff --git a/README.md b/README.md index aa90123..a0f287a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # CS305_FINAL Contributors: Tayyaba Shaheen -ADD YOUR NAME HERE +James Dilig diff --git a/get_student_id.c b/get_student_id.c index 8ffa600..81c90b1 100644 --- a/get_student_id.c +++ b/get_student_id.c @@ -1,3 +1,3 @@ int get_student_id(void){ - return 3331212; + return 6275971; } diff --git a/main.out b/main.out new file mode 100644 index 0000000..6a03dd4 --- /dev/null +++ b/main.out @@ -0,0 +1 @@ +Student ID: 6275971 diff --git a/makefile b/makefile new file mode 100644 index 0000000..e824037 --- /dev/null +++ b/makefile @@ -0,0 +1,15 @@ + +main.out: main + ./main | tee main.out + +main: main.o get_student_id.o + cc -o main main.o get_student_id.o + +main.o: main.c + cc -c main.c + +get_student_id.o: get_student_id.c + cc -c get_student_id.c + +clean: + rm -f main main.out *.o \ No newline at end of file