Skip to content
Snippets Groups Projects
Commit ebe086f5 authored by 이장원's avatar 이장원
Browse files

8.3

parent b4097fe4
Branches
No related tags found
No related merge requests found
# printf
`int printf(const char *format, ...)`
`int printf(const char *format, ...)`
printf 함수는 매개변수를 format에 따라서 출력해주는 함수다.
`int fprintf(FILE *stream, const char *format, ...)`
`int fprintf(FILE *stream, const char *format, ...)`
printf 함수는 실행될 때 내부에서 fprintf 함수로 바뀌어서 실행된다.
```
......@@ -29,7 +29,7 @@ standard input output library의 줄임말로 표준 입출력과 관련된 함
# man
`man <command | function | header file | ...>`
`man <command | function | header file | ...>`
manual의 줄임말로 명령어나 함수, 헤더 파일 등에 대한 사용법을 알려주는 명령어다.
# redirection
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment