|
StrNCpy(char *chStrdest, const char *chStrsrc, int iNum)
{
for(int i = 0; i < iNum; i++)
chStrdest[i] = chStrsrc[i];
chStrdest[iNum] = '\0';
cout<<endl<<"src : "<<chStrsrc<<endl;
cout<<"dest : "<<chStrdest<<endl;
return 0;
}
int StrNCmp(const char *chStrs
|
- 페이지 7페이지
- 가격 3,300원
- 등록일 2012.07.12
- 파일종류 한글(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주 판매 이력 없음
|
|
if(atol(_list1[a].key) == atol(key))//번호가 겹치므로 삽입->수정
{
check = 'U';
flag_i = 1;
break;
}
if(flag_i == 0)
{
if(atol(key) < atol(_list1[0].key))//맨앞삽입
{
strncpy(_list1[0].key, key, 5);
strncpy(_list1[0].name, name, 10);
|
- 페이지 15페이지
- 가격 2,500원
- 등록일 2005.09.30
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
dr_list[0]));
serv_adr.sin_port=htons(25);
if(connect(sock,(struct sockaddr*)&serv_adr,sizeof(serv_adr))==-1)
error_handling(\"connect() error\");
memset(&rcv_message,0,100);
memset(&rcv,0,4);
read(sock,rcv_message,100);
strncpy(rcv,rcv_message,3);
if(strcmp(rcv,\"220\")!=0){
printf(\"%s\",rcv_messa
|
- 페이지 10페이지
- 가격 2,000원
- 등록일 2011.11.27
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
strncpy( char *s1, const char *s2, int n )
#else
static void yy_flex_strncpy( s1, s2, n )
char *s1;
const char *s2;
int n;
#endif
{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_USE_PROTOS
static void *yy_flex_alloc( yy_size_t size )
#else
static void *yy_flex_alloc(
|
- 페이지 41페이지
- 가격 3,000원
- 등록일 2007.12.24
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|