728x90
배열에 문자 하나하나 입력해 넣어
차례대로 출력해보겠습니다.
getchar() 함수는 "표준 입력 스트림(stdin)으로부터 한 문자를 입력받아서 반환해 주는 함수입니다.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main()
{
char string[50];
int len , i;
int total = 0;
char c;
int count=0;
while((string[count++] = getchar())!='\n');
for (i = 0; string[i]!='\n'; i++)
{
printf("%c%d //" , string[i],string[i]);
}
return 0;
}
반응형
'배워보자!! > c언어' 카테고리의 다른 글
[c언어] 문자열에 문자열 추가하기_strcat함수 (0) | 2015.05.03 |
---|---|
[c언어] 문자열을 비교하는 함수_strcmp_strncmp (0) | 2015.05.03 |
[c언어] 문자열을 숫자로 바꿔주는 함수_atoi_atol_atof (0) | 2015.05.02 |
[c언어] c언어로 사각형 만드는 방법! (0) | 2015.04.16 |
[c언어] c언어로 삼각형 만드는 방법! (0) | 2015.04.16 |
댓글