Answers for "how to set console title in c++"

C++
-1

c++ set console title

#include <Windows.h>

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

Browse Popular Code Answers by Language