Program Title

Hello, I just wanna ask how to change the name of your program.
It's default name is the location of your file.
Last edited on
1
2
3
4
#include <windows.h>


SetConsoleTitle("Title");
Ahem

 
SetConsoleTitleA("Title");  // <- note the 'A' 


http://www.cplusplus.com/forum/windows/106683/
Thanks!
@Disch Noted, thanks.
Topic archived. No new replies allowed.