Answers for "c++ change console window title"

C++
-1

c++ set console title

#include <Windows.h>

int main()
{
	SetConsoleTitleA("title name");
}
Posted by: Guest on March-02-2020

Code answers related to "c++ change console window title"

Browse Popular Code Answers by Language