#include #include #include #include #define ASC 0 #define DSC 1 const int TRUE = 1; const int FALSE = 0; using std::cout; using std::cin; using std::endl; typedef struct fruit{ int id; char name[20]; int price; struct fruit *link; }Fruit; int addHead(Fruit **head, int id, char *name, int price); int removeHead(Fruit **head); int removeAll(Fruit **head); void printList(Fruit *head); int getId(Fru..
#include using namespace std; struct Account { char accID[20]; //계좌번호 char secID[20]; //비밀번호 char name[20]; //이름 int balance; //잔액 }; int main(void){ Account man = { "123", "0000", "홍길동", 10000 }; cout