10진수 정수 65~70까지의 숫자를 정수와 문자로 출력하세요
#include <stdio.h> int main() { for (int i = 65; i < 71; i++) { printf("%d %c\\n", i, i); } }