]> zdv2.bktei.com Git - BK-2023-05.git/blobdiff - src/test.c
update(src/):Add tutorial test code
[BK-2023-05.git] / src / test.c
index b08fbb0dd59ad46cf3938f6e8f15bb422c703100..15ff954039a1e139439ee502ec01fb62ec563c31 100644 (file)
@@ -1,12 +1,22 @@
-/*
- * Author: Steven Baltakatei Sandoval
- * Purpose: Test my Emacs C setup
- * Copyright 2022
+/* Desc: Return example
+ * Usage: ./test
+ * Ref/Attrib: [0] C programming tutorial for beginners https://youtu.be/KJgsSFOSQv0?t=6338
+ *             [1] https://youtu.be/ix5jPkxsr7M?t=3072
+ *             [2] C: Multiple scanf's, when I enter in a value for one scanf it skips the second scanf https://stackoverflow.com/a/9562355
  */
 
+
 #include <stdio.h>
+#include <stdlib.h>
+
 int main()
 {
-  puts("Hi, my name is 'Baltakatei'.");
+  
   return 0;
-}
+};
+
+
+/*
+ * Author: Steven Baltakatei Sandoval
+ * License: GPLv3+
+ */