|
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주 판매 이력 없음
|
|
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주 판매 이력 없음
|
|
h→ strcat(), strlen()
③ math.h→ rand(), gsort()
④ ctype.h→ isalpha(), isdigit()
정답) ③
표준함수 rand(), gsort() 는 헤더 파일 stdlib.h 에 해당한다.
51. 다음과 같은 배열이 선언되어 있을 때 *(cp+3)의 값은? (3점)
char *cp, s[ ]="computer";
cp=s;
① c ② o
③ m ④ p
|
- 페이지 27페이지
- 가격 3,800원
- 등록일 2010.02.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|