본문 바로가기
C언어

[C언어] 구조체를 이용하여 이메일을 표현하라. 제목, 수신자, 발신자, 내용, 날짜, 우선순위 등으로 구성하라.

by 이얏호이야호 2020. 5. 5.

공부하시는대에 도움이 됐으면 좋겠습니다.

답안코드 확인해주세요!

 

더보기
#include <stdio.h>

#include <string.h>

struct email {

	char title[100];

	char receiver[50];

	char sender[50];

	char content[1000];

	char date[100];

	int priority;

}

;

int main(void) {

	struct email e;

	strcpy(e.title, "안부 메일");

	strcpy(e.receiver, "chulsoo@hankuk.ac.kr");

	strcpy(e.sender, "hsh@hankuk.ac.kr");

	strcpy(e.content, "안녕하십니까? 별일 없으신지요?");

	strcpy(e.date, "2010/9/1");

	e.priority = 1;

	return 0;

}

 


더 많은 C코드가 보고 싶다면?

https://chuinggun.tistory.com/category/C%EC%96%B8%EC%96%B4

댓글