Hi , i am kind of a noob in C++ So i was wondering how can i make my console application full screen... give me an example of how to do it in a hello world!
code ..... ex:
Hrm, I believe that (at least on Windows) the console is supposed to be 70 (80?) characters wide and doesn't like being stretched beyond that (there is a way, but I don't recall it offhand...)
when i was learning c/c++ i spent a while trying to figure that exact question out. as far as i found out, only the user can change that... that's why i taught myself windows api. good luck
well some people did it before ... just added windows.h and change the console to full screen... , i tryed it but it didnt work on my code so i was asking if thers a simple example for it
If you are using Windows Vista is impossible to have the console running fullscreen.
If you aren't using Vista, this should work: SetConsoleDisplayMode(GetStdHandle(STD_OUTPUT_HANDLE),CONSOLE_FULLSCREEN_MODE,0);