반응형

소문자를 대문자로 나타내는 코드




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//배열과 포인터의 이용
 
#include <stdio.h>
#include <string.h>
#include <malloc.h>
#define MAX_INPUT 256
 
int main()
{
 char input[MAX_INPUT] = {0}; // 입력을 받기 위한 배열
 char *output = NULL; // 출력을 저장하기 위한 포인터
 int length, ch;
 
 fgets(input, MAX_INPUT-1, stdin);  // 사용자로부터 문자열 
 
 length = strlen(input) + 1;  // input의 길이를 측정 마지막 null 문자를 위해 +1
 
 output = (char *)malloc(length); // output에 메모리 할당
 
 for(ch = 0; ch < length ; ch++)
 {
 
  if(input[ch] >= 'a' && input[ch] <= 'z')
  { output[ch] = input[ch] + 'A' - 'a'; }
  
  else
  { output[ch] = input[ch]; }
 
 }
 
  printf("Input : %s \n", input);
  printf("Output : %s \n", output);
  
  free(output); // 메모리 반납
  
  return 0;
 
}
Crocus


반응형

'Basic > C' 카테고리의 다른 글

문자열 비교시 실수할 수 있는 상황  (0) 2016.02.14
char 배열에 한글을 넣을 때 현상  (0) 2015.12.20
구조체 call by value / pointer 차이 예문  (0) 2015.11.21
static 변수  (0) 2015.11.21
구조체 배열 포인터  (0) 2015.11.21