Prepare for your Next Interview
This is a discussion on Printtextscreen and printf within the C and C++ forums, part of the Software Development category; In C programming language is printtextscreen function same as printf? If not what is the difference...
|
|||
|
Re: Printtextscreen and printf
The function printTextScreen() is used in graphics mode in C to print string in specified position and if specified as per the color needed by programmer. The function printTextScreen() takes four parameters namely x coordinate position, y coordinate position, the string and the color. printf is used to print the output in normal screen mode.
|