반응형

C언어 118

[C언어 소스] 문자열에 관한 함수

[C언어 소스] 문자열에 관한 함수 //디딤돌 C언어 http://ehpub.co.kr//문자열에 관한 함수#pragma warning(disable:4996)#include #include int main(){ char name[10] = ""; strcpy(name, "hello"); printf("이름:%s\n", name); printf("문자열 길이:%d\n", strlen(name)); if (strcmp(name, "hello") == 0) { printf("차이가 없다.\n"); } else { printf("차이가 있다.\n"); } return 0;} 실행 결과이름:hello 문자열 길이:5 차이가 없다. 본문[디딤돌 C언어] 68. 문자열

[C언어 소스] 배열과 포인터를 이용한 문자열 사용

[C언어 소스] 배열과 포인터를 이용한 문자열 사용 #include int main() { char name1[6]="hello"; char name2[6]="hello"; const char *str1 = "yahoo"; const char *str2 = "yahoo"; printf("name1: %p name2:%p\n",name1,name2); printf("str1: %p str2:%p\n",str1,str2); name1[0] = 'y'; //str1[0] = 'k'; //값을 변경할 수 없음 printf("name1: %s name2: %s\n",name1,name2); printf("str1: %s str2: %s\n",str1,str2); return 0; } 실행 결과name1: 0023..

[C언어 소스] 선택 정렬 (Selection Sort, 내림 차순)

[C언어 소스] 선택 정렬 (Selection Sort, 내림 차순) Program.c//디딤돌 C언어 http://ehpub.co.kr//선택 정렬 (내림차순) //의사 코드(pseudo code)//함수 SelectionSort : 정수들이 있는 시작 위치 n : 원소 개수)//반복: n이 0보다 클 동안// base에서 n 개의 원소 중에 제일 큰 위치를 찾아 max_pos에 대입// max_pos와 base 위치의 원소를 교환// n을 1 감소, base를 다음 위치로 이동(for문의 후처리 구문) #include #include void Swap(int *a, int *b);//두 수를 바꾸는 함수int *GetMaxPos(int *base, int n);//최대값 위치 찾는 함수void Sel..

[C언어 소스] n 개의 정수 중에 최대값 위치 구하는 함수

[C언어 소스] n 개의 정수 중에 최대값 위치 구하는 함수//디딤돌 C언어 http://ehpub.co.kr//n 개의 정수 중에 최대값 위치 구하는 함수 //의사 코드(pseudo code)//함수 GetMaxPosbase : 정수들이 있는 시작 위치 n : 원소 개수)//max_index를 0으로 초기화//index를 1로 초기화(for문의 초기 구문)//반복: index가 n보다 작을동안// 조건 : base[index]가 base[max_index]보다 크다면// index를 1 증가(for문의 후처리 구문)// base에서 max_index를 더한 위치를 반환 #include #include int *GetMaxPos(int *base, int n);int main(){ int arr[10] ..

[C언어 소스] n 개의 정수의 합계를 구하는 함수

[C언어 소스] n 개의 정수의 합계를 구하는 함수 //디딤돌 C언어 http://ehpub.co.kr//n 개의 정수의 합계를 구하는 함수 //의사 코드(pseudo code)//함수 GetSum(base: 더할 정수들이 있는 시작 위치 n : 원소 개수)//sum을 0으로 초기화//lcnt를 0으로 초기화(for문의 초기 구문)//반복: lcnt가 n보다 작을동안// 현재 sum에 base에서 상대적 거리 lcnt의 원소를 더함// lcnt를 1 증가(for문의 후처리 구문)// sum 반환 #include #include int GetSum(int *base, int n);int main(){ int arr[5] = { 1,2,3,4,5 }; assert(GetSum(arr,5) == 15); as..

[C언어 소스] 범위 내의 정수 중에 소수 개수를 구하는 함수

[C언어 소스] 범위 내의 정수 중에 소수 개수를 구하는 함수 //디딤돌 C언어 http://ehpub.co.kr//범위 내의 정수중에 소수(Prime Number)의 개수를 구하는 함수 //의사 코드(pseudo code)//함수 GetCountIsPrime(start: 구간의 시작, end : 구간의 끝)//count를 0으로 초기화//lcnt를 start로 초기화(for문의 초기 구문)//반복: lcnt가 number보다 작을동안// 조건 : lcnt가 소수이면// count를 1 증가// lcnt를 1 증가(for문의 후처리 구문)// count 반환 #include #include int IsPrime(int number);//특정 수가 소수인지 판별하는 함수int GetCountIsPrime(..

[C언어 소스] 특정 수가 소수(Prime Number)인지 판별하는 함수

[C언어 소스] 특정 수가 소수(Prime Number)인지 판별하는 함수 //디딤돌 C언어 http://ehpub.co.kr//특정 수가 소수(Prime Number)인지 판단하는 함수 //의사 코드(pseudo code)//함수 IsPrime(number:판별할 정수)//lcnt 를 2로 초기화(for문의 초기 구문)//반복: lcnt가 number보다 작을동안// 조건 : number를 lcnt로 나누었을 때 나머지가 0이면// 0 반환// lcnt를 1 증가(for문의 후처리 구문)// 1 반환 #include #include int IsPrime(int number);int main(){ assert(IsPrime(2)); assert(IsPrime(3)); assert(IsPrime(4)==0..

[C언어 소스] 범위 내의 정수 합계를 구하는 함수

[C언어 소스] 범위 내의 정수 합계를 구하는 함수 //디딤돌 C언어 http://ehpub.co.kr//범위 내의 정수 합계를 구하는 함수 //의사 코드(pseudo code)//함수 GetSumInBoundary(start:구간의 시작, end : 구간의 끝)//sum 을 0으로 초기화//lcnt 를 0으로 초기화//lcnt를 start로 대입(for문의 초기 구문)//반복: lcnt가 end보다 작거나 같다면// sum에 sum + lcnt를 대입// lcnt를 1 증가(for문의 후처리 구문)// sum 반환#include #include int GetSumInBoundary(int start, int end);int main(){ //assert 함수는 내부 표현이 거짓이면 오류 메시지 창이 뜹..

[C언어 소스] 블록외부에 정적변수를 선언한 예

[C언어 소스] 블록외부에 정적변수를 선언한 예 //Demo.c #include static int si; void Stub() { si++; printf("Stub: %d\n",si); } //Program.c #include static int si; void Stub(); int main(void) { si=3; printf("main: %d\n",si); Stub(); printf("main: %d\n",si); si=6; printf("main: %d\n",si); Stub(); printf("main: %d\n",si); return 0; } 실행 결과main: 3 Stub: 1 main: 3 main: 6 Stub: 2 main: 6 본문[디딤돌 C언어] 59. 정적 변수

반응형