#include <stdio.h> // printf 사용
#include <stdlib.h>
#include <string.h>
printf("%d", int 변수); // int 변수 출력
printf("%s", str); // 문자열 변수 출력
fopen("___.txt", "r" or "w") // "r" 읽기 , "w" 쓰기
("%[^\n]s", str) // 문자열 \n 까지 읽어들이기
'배우는 여자 > 코딩' 카테고리의 다른 글
데이터의 형태 정리 (1) | 2024.11.28 |
---|---|
오픈소스 소프트웨어 라이센스 (0) | 2024.11.25 |
[Algorithm] 병합 정렬, Merge sorting - 안정적이고 빠르다 (0) | 2021.08.11 |