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
- BASIC
- Algospot
- C언어
- 생활코딩
- DP
- 따라하면서 배우는 C언어
- BOJ
- 정수론
- web
- udemy
- JavaScript
- Math
- greedy
- String
- BFS
- 따라하며 배우는 C언어
- programmers
- C
- 인프런
- 백준
- sorting
- dfs
- Python
- php
- graph
- Cleancode
- 따배씨
- server
- Algorithm
- 종만북
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 14.10 복합 리터럴 본문
따배씨 - 따라하며 배우는 C언어
14강 구조체_1
14.10 복합 리터럴 Compound Literals
#include <stdio.h>
#include <string.h>
#define MAXTITL 41
#define MAXAUTL 31
struct book
{
char title[MAXTITL];
char author[MAXAUTL];
//char* title; // Not recommended
//char* author; // Not recommended
float price;
};
struct rectangle {
double width;
double height;
};
double rect_area(struct rectangle r)
{
return r.width * r.height;
}
double rect_area_ptr(struct rectangle * r)
{
return r->width * r->height;
}
int main()
{
struct book book_to_read = {"Crime and Punishment", "Fyodor Dostoyevsky", 11.25f};
/*
Compound literals
- Temporary structure values
*/
strcpy(book_to_read.title, "Alice in wonderland");
strcpy(book_to_read.author, "Lewis Carroll");
book_to_read.price = 20.3f;
struct book book2 = {"Alice in Wonderland", "Lewis Carroll", 20.3f};
book_to_read = book2;
book_to_read = (struct book){"Alice in Wonderland", "Lewis Carroll", 20.3f};
printf("%s %s\n", book_to_read.title, book_to_read.author);
struct rectangle rec1 = { 1.0, 2.0 };
double area = rect_area(rec1);
area = rect_area((struct rectangle) {1.0, 2.0});
area = rect_area_ptr(&(struct rectangle) {.height = 3.0, .width = 2.0});
// Designated initializers
printf("%f\n", area);
return 0;
}
struct book book_to_read = {"Crime and Punishment", "Fyodor Dostoyevsky", 11.25f};
//book_to_read = {"Alice in Wonderland", "Lewis Carroll", 20.3f}; //Error
- 한번 초기화된 후에는 선언과 같은 방법으로 구조체 값을 변경하지 못함
- 구조체 값 변경 방법
1. member 를 직접 변경
strcpy(book_to_read.title, "Alice in wonderland");
strcpy(book_to_read.author, "Lewis Carroll");
book_to_read.price = 20.3f;
2. 새로운 구조체를 대입하여 변경
struct book book2 = {"Alice in Wonderland", "Lewis Carroll", 20.3f};
book_to_read = book2;
3. 복합 리터럴 구조체로 변경
book_to_read = (struct book){"Alice in Wonderland", "Lewis Carroll", 20.3f};
- 함수에 구조체 입력
1. 구조체 변수를 입력
struct rectangle rec1 = { 1.0, 2.0 };
double area = rect_area(rec1);
2. 복합 리터럴을 입력
area = rect_area((struct rectangle) {1.0, 2.0});
3. 복합 리터럴의 pointer 입력
area = rect_area_ptr(&(struct rectangle) {.height = 3.0, .width = 2.0});
// Designated initializers
- 복합 리터럴은 L-value 이기 때문에, pointer 가 존재
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
'Language > C' 카테고리의 다른 글
[따배씨] 14.12 익명 구조체 (0) | 2021.06.28 |
---|---|
[따배씨] 14.11 신축성 있는 배열 멤버 (0) | 2021.06.28 |
[따배씨] 14.9 구조체와 할당 메모리 (0) | 2021.06.26 |
[따배씨] 14.8 구조체와 함수 연습문제 (0) | 2021.06.22 |
[따배씨] 14.4 구조체의 배열 연습 문제 (0) | 2021.06.22 |
Comments