#include <iostream>

using namespace std;

int main() {
	setlocale(LC_ALL, "rus");
	
	char cstr[4] =  "lol" ;
	
	cout << cstr << endl;

	cstr[0] = '\0';

	cout << cstr << endl;

	system("pause");

	return 0;
}