|
strcpy 실행결과 <헤더파일 이용> <a,b>: %s\n",strcpy(a,b));
printf("strcpy 실행결과 <함수 작성 이용> <a2,b2>: %s\n",strcpy2(a2,b2));
printf("strcat 실행결과 <헤더파일 이용> <a3,b3>: %s\n",strcat(a3,b3));
printf("strcat 실행결과 <함수 작
|
- 페이지 2페이지
- 가격 500원
- 등록일 2010.07.22
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
a[0].name);
for(i=1;i<num;i++)
{
if(a[i].avr > temp)
{
temp = a[i].avr;
strcpy(name, a[i].name);
}
}
printf(\"성적이 가장 좋은 학생은 %s \\n\",name);
}
void avg_jum(Data a[num])
{
int i;
int sum_kor = 0;
int sum_eng = 0;
int sum_mat = 0;
double avg_kor;
double avg_eng;
double avg_mat;
for(i=0;
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2009.06.01
- 파일종류 한글(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주 판매 이력 없음
|
|
em.CarId);
strcpy(HashTable[Check].Maker, Item.Maker);
strcpy(HashTable[Check].Style, Item.Style);
strcpy(HashTable[Check].Model, Item.Model);
HashTable[Check].Mileage = Item.Mileage;
strcpy(HashTable[Check].Color, Item.Color);
HashTable[Check].Link = HashTable[Key].Link;
HashTable[Key].Link=Check;
|
- 페이지 3페이지
- 가격 1,500원
- 등록일 2003.11.24
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
_pStr = new char[m_nLen];
strcpy(m_pStr, temp.m_pStr);
return *this;
}
MyString::MyString(const MyString & src)
{
m_nLen=src.m_nLen;
m_pStr=new char[m_nLen];
strcpy(m_pStr, src.m_pStr);
}
MyString::MyString( )
{
m_nLen=1;
m_pStr=new char[m_nLen];
strcpy(m_pStr, \"\");
}
MyString::MyString(const
|
- 페이지 7페이지
- 가격 2,000원
- 등록일 2009.09.28
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|