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
- pytorch tensor
- conda
- Ai
- anaconda오류
- 머신러닝
- torch
- conda: command not found
- 텐서
- conda오류
- 공부
- 일귀
- essential deep learning paper reading
- ML
- pyTorch
- Tensor
- stm32f 시리즈를 이용한 arm cortex-m3/m4 구조와 응용
- 리눅스 오류
- Machine Learning
- 리눅스
Archives
- Today
- Total
목록2025/07/24 (1)
Embedded World
[C] C의 파일시스템, fopen_s()
C에서 파일의 데이터를 읽거나 쓸 경우 파일 입출력 함수인 fopen_s()를 사용하게 된다. fopen_s의 구문은 다음과 같다.errno_t fopen_s( FILE** pFile, const char *filename, const char *mode);매개변수pFile : 열린 파일에 대한 포인터를 받는 파일 포인터에 대한 포인터이다.filename : 열어야 할 파일의 이름이다.mode : 허용되는 엑세스 형식이다.반환 값성공 시 0이고, 실패 시 오류 코드를 반환한다. 예시 코드// crt_fopen_s.c// This program opens two files. It uses// fclose to close the first file and// _fcloseall to close a..
소프트웨어/C
2025. 7. 24. 20:20