C++.NET 2003 에서 Win32 콘솔 응용프로그램을 선택하고 시작해서 아래의 코드를 실행하면#include using std::cout; using std::endl;class Account { public: char accID[20]; // 계좌 번호 char secID[20]; // 비밀 번호 char name[20]; // 이 름 int balance; // 잔 액 void Deposit(int money){ balance+=money; } void Withdraw(int money){ balance-=money; } };int main(void) { Account yoon={"1234", "2321", "yoon", 1000};yoon.Deposit(100); cout