domlao
domlao

Reputation: 16029

How to change the Title of the command prompt window

How can I change the title of the command prompt window every time I execute a dos-based program by double clicking it, in c language. Should I use the Windows API?

Upvotes: 1

Views: 2079

Answers (3)

F. Kam
F. Kam

Reputation: 656

title allows to set this:

title Windows Title (quotes unneeded)

Upvotes: 2

crowdy
crowdy

Reputation: 319

you can do

%comspec% /c start "testtest" %comspec%

at application launcher of Windows+R

Upvotes: 0

user2189331
user2189331

Reputation:

Try SetConsoleTitle.

Upvotes: 4

Related Questions