Study/code up
[codeup] 1036 : [기초-출력변환] 영문자 한 개 입력받아 10진수로 출력하기
1nfra
2019. 7. 22. 20:02
728x90
1 2 3 4 5 6 7 8 9 10 | #include <stdio.h> int main() { char c; scanf("%c", &c); printf("%d", c); return 0; } | cs |
728x90