Answers for "how to change the title of the console app in c++"

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 "how to change the title of the console app in c++"

Browse Popular Code Answers by Language