_cputs _cputws
將字串寫入主控台。
重要
這個應用程式開發介面無法用來在 Windows 執行階段中執行的應用程式。如需詳細資訊,請參閱 CRT 函式不支援使用 /ZW。
int _cputs( const char *str ); int _cputws( const wchar_t *str );
參數
- str
輸出字串。
傳回值
如果成功,則 _cputs 會傳回 0。 如果函式失敗,則會傳回非零的值。
備註
_cputs 函式會指向 str 直接對主控台的 NULL 結尾字串。 托架傳回行摘要 (CR-LF) 將不會自動附加至字串。
這個函式會驗證其參數。 如果 str 是 NULL,無效的參數叫用處理常式,如 參數驗證中所述。 如果執行允許繼續, errno 設定為 EINVAL ,並傳回 -1。
泛用文字常式對應
Tchar.h 常式 |
未定義的 _UNICODE 和 _MBCS |
已定義 _MBCS |
已定義 _UNICODE |
---|---|---|---|
_cputts |
_cputs |
_cputs |
_cputws |
需求
程序 |
必要的標頭檔 |
選擇性標頭 |
---|---|---|
_cputs |
<conio.h> |
<errno.h> |
_cputws |
<conio.h> |
<errno.h> |
如需相容性詳細資訊,請參閱 相容性。
程式庫
所有的 C 執行階段程式庫 (C run-time libraries) 版本。
範例
// crt_cputs.c
// compile with: /c
// This program first displays a string to the console.
#include <conio.h>
#include <errno.h>
void print_to_console(char* buffer)
{
int retval;
retval = _cputs( buffer );
if (retval)
{
if (errno == EINVAL)
{
_cputs( "Invalid buffer in print_to_console.\r\n");
}
else
_cputs( "Unexpected error in print_to_console.\r\n");
}
}
void wprint_to_console(wchar_t* wbuffer)
{
int retval;
retval = _cputws( wbuffer );
if (retval)
{
if (errno == EINVAL)
{
_cputws( L"Invalid buffer in wprint_to_console.\r\n");
}
else
_cputws( L"Unexpected error in wprint_to_console.\r\n");
}
}
int main()
{
// String to print at console.
// Notice the \r (return) character.
char* buffer = "Hello world (courtesy of _cputs)!\r\n";
wchar_t *wbuffer = L"Hello world (courtesy of _cputws)!\r\n";
print_to_console(buffer);
wprint_to_console( wbuffer );
}
Output
Hello world (courtesy of _cputs)!
Hello world (courtesy of _cputws)!