]> zdv2.bktei.com Git - BK-2023-05.git/blob - src/hello_world_getchar.c
feat(src:2023-07-10):Add hello world, make test
[BK-2023-05.git] / src / hello_world_getchar.c
1 /* Desc: Prints hello world.
2 */
3
4 #include <stdio.h>
5 int main() {
6 int a = 10;
7 printf("Hello world! \n");
8 printf("The value of a : %d", a);
9 getchar(); // pause until user hits 'enter'
10 return 0;
11 };
12
13 /* Author: Steven Baltakatei Sandoval
14 * License: GPLv3+
15 */