共用方式為


_cputs、_cputws

將字串寫入主控台。

重要

這個應用程式開發介面不能用於 Windows 執行階段 中執行的應用程式。如需詳細資訊,請參閱 /ZW 不支援 CRT 函式

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 and _MBCS

_MBCS 已定義

_UNICODE 已定義

_cputts

_cputs

_cputs

_cputws

需求

常式

必要的標頭

選擇性標頭

_cputs

<conio.h>

<errno.h>

_cputws

<conio.h>

<errno.h>

如需詳細的相容性資訊,請參閱相容性

程式庫

C 執行階段程式庫的所有版本。

範例

// 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)!

請參閱

參考

主控台和連接埠 I/O

_putch、_putwch