sscanf() & sprintf() – 메모리(배열)로부터 문자열 입출력하는 함수
CODEDRAGON ㆍDevelopment/C, C++
반응형
sscanf()함수와 sprintf()함수
헤더파일 | string.h |
sscanf()함수 | 배열(메모리)로부터 문자열을 입력받는 함수 |
sprintf()함수 | 배열(메모리)에 문자열을 출력하는 함수 |
함수원형
함수의 원형 | 설명 |
#include<string.h> int sscanf ( const char * s1, const char * s2, ...); |
|
#include<string.h> int sprintf (char * s1, const char * s2, ...); |
|
'Development > C, C++' 카테고리의 다른 글
수학 관련 함수 - math.h, rand()함수와 srand()함수 (0) | 2015.12.03 |
---|---|
데이터를 변환하는 함수 - stdlib.h, ctype.h (0) | 2015.12.02 |
MinGW설치 경로 환경변수에 추가 - Windows 10 (0) | 2015.11.30 |
printf() & scanf() (0) | 2015.11.30 |
ctype.h에 있는 문자 분류 함수 (0) | 2015.11.30 |