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
- 문자형 디바이스 파일
- DMA
- sscanf
- 소캣
- activities
- 속도저하
- ubuntu
- sprintf
- 디스크 축소
- 프레임버퍼
- gparted
- layouts
- jenkins
- interrupt handler
- Shared Folder
- fscanf
- interrupt context
- 젠킨스
- context switch
- pagefile.sys
- memcmp
- context
- makefile
- intents
- fprintf
- usb2.0
- 디스크립터
- 멀티프로세싱
- 환경 변수
- HDR
Archives
- Today
- Total
목록sprintf (1)
do{학습}while
c) sprintf()
기능 요약특정한 스트림에 일련의 데이터를 특정한 형식에 맞추어 버퍼(문자열 변수)에 입력헤더파일#include // C++ 에서는 원형int sprintf(char* str, const char* format, ...);주의 사항예시 코드#include int main() { int integer = 123; char character = 'c'; char string[] = "hello, world"; int* pointer = &integer; double pi = 3.141592; char buf[100]; sprintf(buf, "integer : (decimal) %d (octal) %o \\n", integer, integer); printf("%s \\n", buf); s..
C & C++/c언어 표준함수
2024. 5. 27. 13:52