]> zdv2.bktei.com Git - BK-2023-05.git/blob - src/test.c
15ff954039a1e139439ee502ec01fb62ec563c31
[BK-2023-05.git] / src / test.c
1 /* Desc: Return example
2 * Usage: ./test
3 * Ref/Attrib: [0] C programming tutorial for beginners https://youtu.be/KJgsSFOSQv0?t=6338
4 * [1] https://youtu.be/ix5jPkxsr7M?t=3072
5 * [2] C: Multiple scanf's, when I enter in a value for one scanf it skips the second scanf https://stackoverflow.com/a/9562355
6 */
7
8
9 #include <stdio.h>
10 #include <stdlib.h>
11
12 int main()
13 {
14
15 return 0;
16 };
17
18
19 /*
20 * Author: Steven Baltakatei Sandoval
21 * License: GPLv3+
22 */