]> zdv2.bktei.com Git - BK-2023-05.git/blob - src/test6.c
update(src/kr/ch1/s1.2):Use make to compile
[BK-2023-05.git] / src / test6.c
1 /* Desc:
2 * Usage: ./test5
3 * Ref/Attrib: [1] https://youtu.be/ix5jPkxsr7M?t=3072
4 */
5
6 #include <stdio.h>
7 #include <stdlib.h>
8
9 int main()
10 {
11 char characterName[] = "Thomas";
12 int characterAge = 67;
13 printf("\n");
14 printf("There was once a man named %s\n", characterName);
15 printf("He was %i years old.\n", characterAge);
16 characterAge = 1;
17 printf("He really liked the name %s\n", characterName);
18 printf("but he did not like being %i.\n", characterAge);
19 return 0;
20 };
21
22 /*
23 * Author: Steven Baltakatei Sandoval
24 * License: GPLv3+
25 */