C를 통한 주소록 프로그램#include #include using namespace std;#define MAX_PERSON 1000#define MAX_LEN 300struct person { char* name, * address; char* phone, * email, * web;};typedef struct person Person;Person directory[MAX_PERSON];int n = 0;구조체 Person의 배열을 사용합니다. n은 저장된 사람수이며 최대 1000명을 저장할 수 있습니다. typedef 을 이용해서 struct person를 Person이라고 부르겠다라는 뜻입니다. 파이썬의 Numpy as np와 비슷한 기능이라고 생각하시면 됩니다. Person에 directo..