Trying to left align some data that I'm reading into an array. Currently everything is right aligned. Thanks
This is a discussion on Left Align within the C++ Programming forums, part of the General Programming Boards category; Trying to left align some data that I'm reading into an array. Currently everything is right aligned. Thanks...
Trying to left align some data that I'm reading into an array. Currently everything is right aligned. Thanks
if you're using a vector array just read it in, then typeif you're using plain old arrays, either write the data in reverse order, or write a function to reverse it after the factCode:reverse(array.begin(),array.end());