일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 완전탐색
- python __init__
- #일상영어
- python 알고리즘
- #실생활영어
- opencv SURF
- #opencv
- #1일1영어
- TensorFlow
- #영어
- 이미지 생성
- #English
- word embedding
- 영어명언
- #영어 명언
- #Android
- findContours
- 딥러닝
- convexhull
- object detection
- Convolution Neural Network
- python list
- keras
- c언어
- tokenizing
- #실생활 영어
- tensorflow update
- #프로젝트
- 영어
- text2img
Archives
- Today
- Total
목록문자열 복사 (1)
When will you grow up?
문자열 다루기
저장된 문자열 값을 수치로 변환 헤더 추가#include 사용방법[atoi -> ASCII to integer(문자열을 정수로 변환)]변수 = atoi(문자열 배열명); ex) int main(void) { char str[] = "-145"; int suuti = atoi(str); printf("%d",suuti); return 0; } 문자열 복사 헤더 추가#include 사용방법[strcpy -> string copy(문자열 복사)]strcpy(복사 대상 문자열 배열명, 복사 원본 문자열 배열명); ex) int main(void) { char str[10]; strcpy(str, "STUDENT"); printf("%s \n",str); return 0; } 문자열 연결 헤더 추가#include..
02. Study/C언어
2017. 1. 6. 15:38