반응형

소스 파일 143

[C언어 소스] 부분 문자열 비교(strncmp 함수)

[C언어 소스] 부분 문자열 비교(strncmp 함수) #include #include #define MAX_NAME_LEN 50 int main() { char name1[MAX_NAME_LEN+1] = "hello"; char name2[MAX_NAME_LEN+1] = "hello world"; if(strcmp(name1,name2) == 0) { printf("%s 와 %s는 같다.\n",name1,name2); } else { printf("%s 와 %s는 다르다.\n",name1,name2); } if(strncmp(name1,name2,5) == 0) { printf("%s 와 %s의 %d개의 문자는 같다.\n",name1,name2,5); } else { printf("%s 와 %s의 %d..

[C언어 소스] 문자열 비교(strcmp 함수)

[C언어 소스] 문자열 비교(strcmp 함수) #include #include #define MAX_NAME_LEN 50 int main() { char name1[MAX_NAME_LEN+1] = "hello"; char name2[MAX_NAME_LEN+1] = "hello"; if(strcmp(name1,name2) == 0) { printf("%s 와 %s는 같다.\n",name1,name2); } else { printf("%s 와 %s는 다르다.\n",name1,name2); } return 0; } 실행 결과hello와 hello는 같다. 본문[디딤돌 C언어] 71. 문자열 비교와 strcmp함수

[C언어 소스]유니코드와 ASCII 코드 문자열 길이

[C언어 소스]유니코드와 ASCII 코드 문자열 길이 #include #include #include int main() { char c ='a'; wchar_t wc = L'홍'; char name[10]="홍길동"; wchar_t wname[10]=L"홍길동"; setlocale(LC_ALL,"Korean"); //로케일 설정(지역 설정) printf("c:%c wc:%lc\n",c,wc); printf("name:%s wname:%ls\n",name,wname); printf("name 길이:%d wname 길이:%d\n",strlen(name), wcslen(wname)); return 0; } 실행 결과c:a wc:홍 name:홍길동 wname:홍길동 name 길이:6 wname 길이:3 본문[..

[C언어 소스] char 형식 배열에 문자열 초기화

[C언어 소스] char 형식 배열에 문자열 초기화 #include #define MAX_NAME_LEN 50 #define MAX_ADDR_LEN 100 int main() { char name[MAX_NAME_LEN+1] = {'a','b','c'}; char addr[MAX_ADDR_LEN+1] = "제주도 제주시 애월읍 고내리"; printf("이름:%s\n",name); printf("주소:%s\n",addr); return 0; } 실행 결과이름:abc 주소:제주도 제주시 애월읍 고내리 본문[디딤돌 C언어] 69. 문자열 사용 기초

[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언어 소스] 범위 내의 정수 중에 소수 개수를 구하는 함수

[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. 정적 변수

반응형