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
- 정수론
- 백준
- sorting
- BOJ
- JavaScript
- graph
- String
- BASIC
- Algospot
- Cleancode
- BFS
- 생활코딩
- 인프런
- Algorithm
- 따배씨
- programmers
- 따라하면서 배우는 C언어
- udemy
- Python
- 종만북
- DP
- server
- Math
- C언어
- dfs
- greedy
- C
- php
- web
- 따라하며 배우는 C언어
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 10.18 복합 리터럴과 배열 본문
따배씨 - 따라하며 배우는 C언어
10강 배열과 포인터
10.18 복합 리터럴 Compound Literals 과 배열 Arrays
#include <stdio.h>
#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 <stdio.h>
#define COLS 4
int sum_1d(int arr[], int n);
int sum_2d(int arr[][COLS], int rows);
int main(){
int arr1[2] = {1, 2};
int arr2[2][COLS] = { {1, 2, 3, 4}, {5, 6, 7, 8}};
printf("%d\n", sum_1d(arr1, 2));
printf("%d\n", sum_2d(arr2, 2));
printf("\n");
printf("%d\n", sum_1d((int[2]) {1, 2}, 2));
printf("%d\n", sum_2d((int[2][COLS]){ {1, 2, 3, 4}, {5, 6, 7, 8}}, 2));
printf("\n");
return 0;
}
int sum_1d(int arr[], int n){
int total = 0;
for (int i = 0; i < n; ++i){
total += arr[i];
}
return total;
}
int sum_2d(int arr[][COLS], int rows){
int total = 0;
for (int j = 0; j < rows; ++j){
for (int i = 0; i < COLS; ++i){
total += arr[j][i];
}
}
return total;
}
printf("%d\n", sum_1d((int[2]) {1, 2}, 2));
printf("%d\n", sum_2d((int[2][COLS]){ {1, 2, 3, 4}, {5, 6, 7, 8}}, 2));
- 배열을 선언하지 않고, compound Literal 로 직접 입력
#include <stdio.h>
#define COLS 4
int sum_1d(int arr[], int n);
int sum_2d(int arr[][COLS], int rows);
int main(){
int* ptr1;
int(*ptr2)[COLS];
ptr1 = (int[2]) {1, 2};
ptr2 = (int[2][COLS]) {{1, 2, 3, 4}, {5, 6, 7, 8}};
printf("%d\n", sum_1d(ptr1, 2));
printf("%d\n", sum_2d(ptr2, 2));
return 0;
}
int sum_1d(int arr[], int n){
int total = 0;
for (int i = 0; i < n; ++i){
total += arr[i];
}
return total;
}
int sum_2d(int arr[][COLS], int rows){
int total = 0;
for (int j = 0; j < rows; ++j){
for (int i = 0; i < COLS; ++i){
total += arr[j][i];
}
}
return total;
}
int* ptr1;
int(*ptr2)[COLS];
ptr1 = (int[2]) {1, 2};
ptr2 = (int[2][COLS]) {{1, 2, 3, 4}, {5, 6, 7, 8}};
- 포인터를 선언 후, compound literal 로 초기화
- 이름이 없는 literal data 나 lambda 함수 등을 사용하는 것이 최근 프로그래밍에서 나타나고 있음
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
'Language > C' 카테고리의 다른 글
[따배씨] 11.2 메모리 레이아웃과 문자열 (0) | 2021.06.09 |
---|---|
[따배씨] 11.1 문자열을 정의하는 방법들 (0) | 2021.06.09 |
[따배씨] 10.17 변수로 길이를 정할 수 있는 배열 (VLAs) (0) | 2021.06.08 |
[따배씨] 10.16 다차원 배열을 함수에게 전달해 주는 방법 (0) | 2021.06.08 |
[따배씨] 10.15 포인터의 호환성 (0) | 2021.06.07 |
Comments