11장2번1 [c언어콘서트] 11장 2번 (이메일 표현) [11장 2번] 구조체를 이용하여 이메일을 표현할 수 있는 구조체를 정의하고, 적당한 초깃값을 부여하고 출력하는 프로그램을 작성하라. 구조체의 멤버는 제목, 수신자, 발신자, 내용, 날짜, 우선순위 등으로 구성된다. [풀이]#include #include #define MAX 2 struct user { char title[20]; char receiver[20]; char caller[20]; char main[30]; char date[20]; int priority; }; int main() { struct user member[MAX]; char title[20]; char receiver[20]; char caller[20]; char main[30]; char date[20]; printf(".. 2018. 10. 28. 이전 1 다음