c 2b 2b set console title

Solutions on MaxInterview for c 2b 2b set console title by the best coders in the world

showing results for - "c 2b 2b set console title"
Elena
23 Jun 2017
1#include <Windows.h>
2
3int main()
4{
5	SetConsoleTitleA("title name");
6}