]> zdv2.bktei.com Git - BK-2023-05.git/blob - src/kr_exercises/ch1/s1.5/charconst.c
feat(src/kr/s1.5):Add more examples
[BK-2023-05.git] / src / kr_exercises / ch1 / s1.5 / charconst.c
1 #include <stdio.h>
2
3 /* Returns character constant of first provided char.*/
4 int main() {
5 int c;
6
7 while ((c = getchar()) != EOF) {
8 if (c == '\n') {
9 printf("\n");
10 } else {
11 printf("%d\n", c);
12 };
13
14 };
15
16 };