Whenever I build and run my C++ code from Visual Studio 2013, the console window width is un-adjustable and because of this, causes my output to be pushed onto the next line soo
You can simply use this:
Console.WindowWidth = Console.LargestWindowWidth - [insert number of pixels from the end of the screen]
Console.WindowHeight = Console.LargestWindowHeight - [insert number of pixels from the end of the screen]
If I wanted to set the console window to be 15 pixels from the edge of the screen, I would do this:
Console.WindowWidth = Console.LargestWindowWidth - 15