I know using system("anything") is bad but I was wondering if it could be harmful at all using system("TITLE Program title") since all it does is change the name at the top of the command prompt. IF it is bad is there an alternative?
If this is a console program, I have no idea, but there's probably a similar SetConsoleTitle function or something in WinAPI somewhere. I'm too lazy to check. (I hate the console)
I decided I would try the unicode way but using SetConsoleTitle( _T("Your Title Here") ); doesn't seem to work. I get error C3861: '_T': identifier not found. Do I need another header file besides windows.h?
edit:nevermind i fixed it by including tchar.h