|
emp = *str++)
{
if(temp == a)
{
printf("%s\n", str - 1);
break; // 안 쓸 경우 a로 시작되는 모든 문장 찾아 출력
}
}
if(temp == '\0')
printf("찾는 글자가 없습니다\n");
}
<밑에 계속>
#include <stdio.h>
void report1_strcmp(char *str1, char *str2)
// strcmp(a,b) a와 b를 비교
//
|
- 페이지 5페이지
- 가격 800원
- 등록일 2008.08.21
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
strcmp 함수의 연산시 비교된 값을 보여주기위한 프린트함수를 따로 정의함.
■ 결과화면
○ 메뉴화면
1
○ 문자관련 함수(1번) 실행화면
○ 문자열 관련 함수(2번) 실행화면
2
○ 파일 입출력 함수(3번) 실행화면
■ 결과 고찰
- 문자열
|
- 페이지 3페이지
- 가격 700원
- 등록일 2009.06.01
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
char toupper(char c)
{
if((c>='a')&& (c<='z'))c-='a'=-'A';
return(c);
} tolower,isupper,islower,isdigit,isalpha,strlen(c),strcpy(c),strcat(c),strcmp(c),StrNCpy(c),strncat(c),strncmp(c),toupper
구현, c언어, 함수, 구현 c언어, tolower,isupper,islower,isdigit,isalpha,strlen(c),strcpy(c),strcat(c),strcmp(c),StrNCpy(c),strncat(c),strncmp(c),
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2010.01.06
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
//////////////////////////////////////////식물 구조체에 넣기
else if(strcmp(opcode,"OK111")==0){
sscanf(temp,"%s %s",messdata1,messdata2);
int num = atoi(messdata2);
sscanf(temp,"%s %d %s %d %d %d",messdata1,&plantarr[num].num, plantarr[num].name,&plantarr[num].curr[0],&plantarr[num].curr[1],&planta
|
- 페이지 29페이지
- 가격 3,000원
- 등록일 2009.02.11
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
TIXR") == 0)
find = 1;
return find;
}
void address_str_fill1(char *address, char *temp_r1, char *temp_r2) //형식 2의 피연산자 레지스터 2개를 결정하는 함수
{
if(strcmp(temp_r1, "A") == 0)
address[0] = '0';
else if(strcmp(temp_r1, "X") == 0)
address[0] = '1';
else if(strcmp(temp_r1, "L") == 0)
addres
|
- 페이지 30페이지
- 가격 3,000원
- 등록일 2006.05.14
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|