共用方式為


printf、_printf_l、wprintf、_wprintf_l

列印格式化的輸出到標準輸出資料流。 更多這些函式的可用安全版本,請參閱 printf_s、_printf_s_l、wprintf_s、_wprintf_s_l

int printf(
   const char *format [,
   argument]... 
);
int _printf_l(
   const char *format,
   locale_t locale [,
   argument]... 
);
int wprintf(
   const wchar_t *format [,
   argument]... 
);
int _wprintf_l(
   const wchar_t *format,
   locale_t locale [,
   argument]... 
);

參數

  • format
    格式控制。

  • argument
    選擇性引數。

  • locale
    使用的地區設定。

傳回值

傳回列印的字元數,或傳回負值表示發生錯誤。 如果 format 是 NULL,則叫用無效參數處理常式,如 參數驗證 中所述。 如果允許繼續執行,函式會傳回 -1 並將 errno 設定為 EINVAL。 如果在 argument 中發現 EOF (0xFFFF),函式會傳回 -1。

如需 errno 和錯誤碼的詳細資訊,請參閱 _doserrno、errno、_sys_errlist 和 _sys_nerr

備註

printf 函式會格式化一連串的字元和數值並列印到標準輸出資料流 stdout。 如果 format 字串後面有接續參數,則 format 字串必須包含決定參數輸出格式的規格。 printf 和 fprintf 行為上相同,除了 printf 寫入輸出到 stdout 而不是以 FILE 類型為目標。

wprintf 是 printf 的寬字元版本,format 是寬字元字串。 如果資料流是以 ANSI 模式開啟,則 wprintf 和 printf 的行為相同。 printf 目前不支援輸出到 UNICODE 資料流。

尾碼為 _l 的這些函式版本是一樣的,只不過它們使用傳入的地區設定,而不是目前執行緒的地區設定。

一般文字常式對應

TCHAR.H 常式

未定義 _UNICODE & _MBCS

已定義 _MBCS

已定義 _unicode

_tprintf

printf

printf

wprintf

format 引數包含一般字元、逸出序列和 (如果引數接在 format 後面的話) 格式規格。 一般字元和逸出序列會依照它們出現的順序複製到 stdout。 例如,此行:

printf("Line one\n\t\tLine two\n"); 

會產生輸出:

Line one
        Line two

格式規格永遠以百分比符號 (%) 開頭並由左至右讀取。 當 printf 遇到第一個格式規格 (如果有的話),則會轉換在 format 後的第一個參數的值並據以輸出它。 第二個格式規格會使第二個引數被轉換和輸出,依此類推。 如果參數的個數比格式規格的數目還多,將會忽略額外的引數。 如果引數個數不足以供所有格式規格使用,結果是未定義的。

安全性注意事項安全性提示

確認 format 不是使用者定義的字串。

一般文字常式對應

Tchar.h 常式

未定義 _UNICODE and _MBCS

已定義 _MBCS

已定義 _UNICODE

_tprintf

printf

printf

wprintf

_tprintf_l

_printf_l

_printf_l

_wprintf_l

需求

常式

必要的標頭

printf, _printf_l

<stdio.h>

wprintf, _wprintf_l

<stdio.h> 或 <wchar.h>

Windows 市集 應用程式不支援主控台。 與主控台關聯的標準資料流控制代碼 (stdin、stdout 和 stderr) 必須重新導向,然後 C 執行階段函式才能在 Windows 市集 應用程式中使用它們。 如需其他相容性資訊,請參閱相容性

範例

// crt_printf.c
// This program uses the printf and wprintf functions
// to produce formatted output.

#include <stdio.h>

int main( void )
{
   char     ch = 'h', 
            *string = "computer";
   wchar_t  wch = L'w', 
            *wstring = L"Unicode";
   int      count = -9234;
   double   fp = 251.7366;

   // Display integers
   printf( "Integer formats:\n"
           "   Decimal: %d  Justified: %.6d  "
           "Unsigned: %u\n",
           count, count, count, count );

   // Display decimals
   printf( "Decimal %d as:\n   Hex: %Xh  "
           "C hex: 0x%x  Octal: %o\n",
            count, count, count, count );

   // Display in different radixes
   printf( "Digits 10 equal:\n   Hex: %i  "
           "Octal: %i  Decimal: %i\n",
            0x10, 010, 10 );

   // Display characters
   printf("Characters in field (1):\n"
          "%10c%5hc%5C%5lc\n",
          ch, ch, wch, wch);
   wprintf(L"Characters in field (2):\n"
           L"%10C%5hc%5c%5lc\n",
           ch, ch, wch, wch);

   // Display strings
   printf("Strings in field (1):\n%25s\n"
          "%25.4hs\n   %S%25.3ls\n",
          string, string, wstring, wstring);
   wprintf(L"Strings in field (2):\n%25S\n"
           L"%25.4hs\n   %s%25.3ls\n",
           string, string, wstring, wstring);

   // Display real numbers
   printf("Real numbers:\n   %f %.2f %e %E\n",
          fp, fp, fp, fp );

   // Display pointer
   printf( "\nAddress as:   %p\n", &count);
}

範例輸出

Integer formats:
   Decimal: -9234  Justified: -009234  Unsigned: 4294958062
Decimal -9234 as:
   Hex: FFFFDBEEh  C hex: 0xffffdbee  Octal: 37777755756
Digits 10 equal:
   Hex: 16  Octal: 8  Decimal: 10
Characters in field (1):
         h    h    w    w
Characters in field (2):
         h    h    w    w
Strings in field (1):
                 computer
                     comp
   Unicode                      Uni
Strings in field (2):
                 computer
                     comp
   Unicode                      Uni
Real numbers:
   251.736600 251.74 2.517366e+002 2.517366E+002

Address as:   0012FF3C

.NET Framework 對等用法

請參閱

參考

浮點支援

資料流 I/O

地區設定

fopen、_wfopen

_fprintf_p、_fprintf_p_l、_fwprintf_p、_fwprintf_p_l

scanf、_scanf_l、wscanf、_wscanf_l

sprintf、_sprintf_l、swprintf、_swprintf_l、__swprintf_l

vprintf 函式

_set_output_format