| Character Manipulation Function int _cputs(const char* string);  int _cputws(const wchar_t* string);  int _cputts(const TCHAR* string); Internationalization (I18n) Function OverviewThe _cputsfunction outputs the null-terminatedstringto the console, returning a non-zero value in the event of an error. _cputwsis the wide-character version of_cputs; the argument is a wide-character string.
 _cputtsis the Generic version of the function; with the_MBCSor_UNICODEcompiler flags determining its mapping to either_cputsor_cputws.
 
 See the MSDN Library for further details on this function. I18n IssuesUse the appropriate version of the function as required for internationalization support. See Character I/O for a discussion on non-ASCII character 
input/output in an internationalized application. Recommended Replacements* 
*If you're already using the recommended function, see I18n Issues for other reasons why Globalyzer is detecting the function. Character Manipulation 
              Functions    
 |