Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- tips강좌
- MyTread
- 실습
- SSG
- MFC
- C++
- 별찍기
- 포트폴리오
- 정보처리기사
- 충무창업큐브
- Tipsware
- 미가공
- 도움말
- 유료강좌
- mysql
- visual
- 마이크로소프트
- mfc 실습
- C언어
- linux
- Time
- do it c
- MFC 예제
- ListBox
- 핵심 요약
- win32
- 김성엽
- C
- MyThread
- 정처기 독학
Archives
- Today
- Total
목록memmove (1)
History
[C언어] 문자열 앞에 다른 패턴을 추가해야할 때
이미 저장된 문자열 앞에 사용자가 원하는 문구를 추가해야 할 때 더보기 ex) hello world !!! -----변환----- 1. hello 2. world 3. !!! 코드는 아래와 같다. #include int main() { char str_table[3][16] = { "hello","world" ,"!!!" }; for (int i = 0; i < 3; i++){ printf("%s\n", str_table[i]); } char temp[3][20]; for (int i = 0; i < 3; i++) { sprintf_s(temp[i], 20, "%d. %s", i+1, str_table[i]); //문자열 합치기 } for (int i = 0; i < 3; i++) { printf("%s..
C,C++/개념 실습 프로그래밍
2022. 10. 26. 18:55