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 | 31 |
Tags
- sprintf
- 소캣
- fscanf
- 프레임버퍼
- layouts
- ubuntu
- DMA
- fprintf
- intents
- interrupt context
- sscanf
- makefile
- 속도저하
- usb2.0
- HDR
- interrupt handler
- jenkins
- 디스크립터
- 문자형 디바이스 파일
- memcmp
- activities
- 젠킨스
- pagefile.sys
- context switch
- gparted
- 디스크 축소
- Shared Folder
- 환경 변수
- 멀티프로세싱
- context
Archives
- Today
- Total
목록sscanf (1)
do{학습}while
c) sscanf()
기능 요약문자열에 형식 지정자를 읽어온다. 지정한 형식 지정에 맞게 변수에 저장헤더파일#include // C++ 에서는 원형int sscanf(const char* str, const char* format, ...);주의 사항예시 코드#include int main() { char str[30] = "1234"; int i; sscanf(str, "%d", &i); printf("Number from : '%s' \\n", str); printf("number : %d \\n", i); return 0;}
C & C++/c언어 표준함수
2024. 5. 27. 13:53