책 이미지

책 정보
· 분류 : 국내도서 > 컴퓨터/모바일 > 프로그래밍 언어 > C
· ISBN : 9791137272194
· 쪽수 : 96쪽
· 출판일 : 2022-02-12
목차
▶ 목차
시작해 C 언어, C 언어에 대하여:
시작해 C 언어, Editor 준비에 대하여:
시작해 C 언어, 소스코드 새 파일에 대하여:
Section 1. 파일
01. File
02. File Operations
03. 구조체 FILE
04. FILE *
05. Global vs Local
06. File Types
07. File Access Modes
08. fopen() 함수
09. Write Mode, "w"
10. fprintf() 함수
11. fclose() 함수
12. Read Mode, "r"
13. fscanf() 함수
14. Append Mode, "a"
15. fputc()와 fputs() 함수
16. fgetc()와 fgets() 함수
17. Write Mode, "wb"
18. fwrite() 함수, Literal
19. fwrite() 함수, Variable
20. fwrite() 함수, Structure
21. Read Mode, "rb"
22. fread() 함수, Literal
23. fread() 함수, char, int
24. fread() 함수, Structure
25. fread() 함수, 구조체변수
26. fread() 함수, 구조체배열
27. fseek() 함수
Section 2. 메모리
28. Memory
29. Local Variable, char
30. Local Variables,
int와 long long int
31. Local Variables,
float와 double
32. Arrays, char
33. Arrays, int와 long long int
34. Arrays, float와 double
35. Global Variables
36. Dynamic Allocation, int
37. Dynamic Allocation, char
Section 3. 라이브러리
38. C Header Files
39. <ctype.h>
40. <ctype.h> isalnum()
41. <ctype.h> isalpha()
42. <ctype.h> isdigit()
43. <ctype.h> isspace()
44. <ctype.h> islower(),
isupper(), tolower(), toupper()
45. <ctype.h> iscntrl(),
isgraph(), isprint()
46. <ctype.h> isxdigit(),
ispunct()
47. <math.h>
48. <math.h> cos(), sin(), tan()
49. <math.h> exp(), log(), log10()
50. <math.h> pow(), sqrt()
51. <math.h> modf(), fmod()
52. <math.h> ceil()
53. <math.h> floor()
54. <math.h> fabs()
55. <stdlib.h>
56. <stdlib.h> abs()
57. <stdlib.h> atoi(), atof(), strtod(), strtol()
58. <stdlib.h> rand()
59. <stdlib.h> srand()
60. <stdlib.h> system()