How do i print a message on a windows app in dev c++ V4
This is a discussion on window app functions within the Game Programming forums, part of the General Programming Boards category; How do i print a message on a windows app in dev c++ V4...
How do i print a message on a windows app in dev c++ V4
This war, like the next war, is a war to end war.
I'm assuming you mean how do you output text in a Win32 application? You can use TextOut or DrawText. Look them up on MSDN for exact usage. DrawText is more flexible but TextOut is simple.