Here's my payroll program I am making which represents the company I work for. I as able to create it using arrays but now I want to add my company name at the top so when it's executed it shows.....How is this done? I've tried a few things but they are not working:
I thought it was that simple idk why I even asked. My buddy made a big deal about it that's why I wasn't sure if something special needed to be done. Thanks dude
Oh I just realized that u might have meant to change the main title bar. In that case u'll have to find the right function depending on the os since each has its own way. For windows it'd simply be:
SetConsoleTitle(_T("MY awesome title"));
If this is the 1st line after main() u'll still notice that there's a split second where the old title (the file path to ur .exe) is shown. I'm not sure how to have cmd actually open with ur desired title. That'd take some more complicated investigation...