Code:
int main()
{	
	char name[255];
	while (name !="exit")
	{
		std::cout<< "Insert your name:\n";
		std::cin>>name;
		std::cout<< "Hi "<<name<<"\n";
		std::cin>>name;	
		std::cout<<name;
	}
	return 0;
}
why these code takes very time to open the exe?
why when i type "exit", the program don't close it?
(only with me these stupid errors)