일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 종만북
- JavaScript
- 따라하면서 배우는 C언어
- BASIC
- C
- php
- BFS
- Algorithm
- udemy
- 정수론
- dfs
- graph
- 따라하며 배우는 C언어
- greedy
- 따배씨
- 생활코딩
- C언어
- BOJ
- server
- Math
- sorting
- Cleancode
- 백준
- web
- DP
- Python
- Algospot
- 인프런
- String
- programmers
- Today
- Total
목록따라하며 배우는 C언어 (67)
몽상실현개발주의
따배씨 - 따라하며 배우는 C언어 11강 문자열 함수들 11.5 문자열을 출력하는 다양한 방법들 #include #define TEST "A string from #define." void custom_put(const char* str); // Only two lines void custom_put2(const char* str); // Add \n, return # of characters int main(){ char str[60] = "String array initialized"; const char* ptr = "String array initialized"; puts("String without \\n"); // String without \n puts("END"); // END puts(T..
따배씨 - 따라하며 배우는 C언어 10강 배열과 포인터 10.18 복합 리터럴 Compound Literals 과 배열 Arrays #include #define COLS 4 int sum_1d(int arr[], int n); int sum_2d(int arr[][COLS], int rows); int main(){ // Literals are constant that aren't symbolic 3; 3.14f; // compound literal (int[2]) {3, 4}; return 0; } #include #define COLS 4 int sum_1d(int arr[], int n); int sum_2d(int arr[][COLS], int rows); int main(){ int arr1[..
따배씨 - 따라하며 배우는 C언어 10강 배열과 포인터 10.16 다차원 배열 Multidimensional Arrays 을 함수에게 전달해 주는 방법 #include #define ROWS 3 #define COLS 4 int sum2d_1(int ar[ROWS][COLS]); int sum2d_2(int ar[][COLS], int row); //int sum2d_2(int [][COLS], int row); //int sum2d_2(int (*ar)[COLS], int col); int sum2d_3(int* ar, int row, int col); //int sum2d_3(int*, int, int); int main(){ int data[ROWS][COLS] = { {1, 2, 3, 4}, {5..