#include <iostream>

int main7()
{
	//1������bool��������
	bool flag = true;
	std::cout << flag << std::endl;

	flag = false;
	std::cout << flag << std::endl;

	//������  1������  0������

	//2���鿴bool������ռ�ڴ�ռ�

	std::cout << "bool������ռ�ڴ�ռ� " << sizeof(bool) << std::endl;

	system("pause");

	return 0;
}