// 4_4-3.cpp : コンソール アプリケーションのエントリ ポイントを定義します。
//

#include "stdafx.h"
#include <iostream>
#include <windows.h>

using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
	char s [10];
	//strcpy(s, "abcdefghijklmn");	// 配列あふれになる

	char st[4][80];
	strcpy(st[0], "string");
	strcpy(st[1], "test");
	cout << st[0] << " " << st[1] << '\n';	// string test

	MessageBox(NULL, _T("Check Console Window"), L"MessageBox", MB_OK);

	return 0;
}

