]> zdv2.bktei.com Git - BK-2023-05.git/blobdiff - src/test.c
chore(src/):Add more tutorial source code
[BK-2023-05.git] / src / test.c
index b08fbb0dd59ad46cf3938f6e8f15bb422c703100..20f3c5d301db117a62746371177a0a12b9345697 100644 (file)
@@ -1,12 +1,23 @@
-/*
- * Author: Steven Baltakatei Sandoval
- * Purpose: Test my Emacs C setup
- * Copyright 2022
+/* Desc: For Loops
+ * Usage: ./test
+ * Ref/Attrib: [0] C programming tutorial for beginners https://youtu.be/KJgsSFOSQv0?t=10212
+ *             [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 <stdio.h>
-int main()
-{
-  puts("Hi, my name is 'Baltakatei'.");
+#include <stdlib.h>
+
+int main(){
+  
   return 0;
   return 0;
-}
+};
+
+
+
+
+/*
+ * Author: Steven Baltakatei Sandoval
+ * License: GPLv3+
+ */