--- /dev/null
+/* Desc: Prints value of EOF
+ * Usage: name=print_eof_value; gcc -o "$name" "$name".c; ./"$name";
+ * Ref/Attrib: [0]: The C Programming Language, 2nd Edition, Section 1.5.1
+ */
+
+/* Exercise 1-7 Prints the value of EOF specified by stdio.h
+ */
+#include <stdio.h>
+
+int main(){
+ int output;
+ output = EOF;
+ printf("EOF value:%d", output);
+ return 0;
+};
+
+/* Author: Steven Baltakatei Sandoval
+ * License: GPLv3+
+ */
--- /dev/null
+/* Desc:
+ * Usage: ./test5
+ * Ref/Attrib: [1] https://youtu.be/ix5jPkxsr7M?t=3072
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main()
+{
+ char characterName[] = "Thomas";
+ int characterAge = 67;
+ printf("\n");
+ printf("There was once a man named %s\n", characterName);
+ printf("He was %i years old.\n", characterAge);
+ characterAge = 1;
+ printf("He really liked the name %s\n", characterName);
+ printf("but he did not like being %i.\n", characterAge);
+ return 0;
+};
+
+/*
+ * Author: Steven Baltakatei Sandoval
+ * License: GPLv3+
+ */