C 中的 printf() 函數
printf() 函數定義在<stdio.h>
頭文件。
原型:
int printf(const char* str, . . .);
參數: const char* str
, 更多可選參數
返回類型: int
函數的使用:
printf() 函數將寫在雙反引號中的參數寫入到stdout
流。這函數原型 printf()是int printf( const char* str, ...);
str 指向的字符串由兩種類型的項組成。第一項是打印在屏幕上的數據類型,第二項是數據類型的格式。如果輸出錯誤,則返回打印的總字符數或負值。
有些數據類型有一些格式是c,
code Format %c Display Character %d Display signed integer number %f Display floating point number %ld Display double numbers %s Display string %p Display pointer %x Display hexadecimal numbers
C 中的 printf() 示例
#include <stdio.h>
int main()
{
printf("Print a character - %c\n", 'a');
printf("Print a number - %d\n", 10);
printf("Print a decimal number - %f\n", 5.25);
printf("Print a string - %s\n", "hello");
return 0;
}
輸出
相關用法
- C語言 printf() and scanf()用法及代碼示例
- C語言 putchar()用法及代碼示例
- C語言 putpixel()用法及代碼示例
- C語言 pthread_cancel()用法及代碼示例
- C語言 pthread_equal()用法及代碼示例
- C語言 pthread_self()用法及代碼示例
- C語言 perror()用法及代碼示例
- C語言 putc()用法及代碼示例
- C語言 puts()用法及代碼示例
- C語言 pieslice()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 feof()用法及代碼示例
- C語言 imagesize()用法及代碼示例
- C語言 getarcoords()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 setlinestyle()用法及代碼示例
- C語言 showbits()用法及代碼示例
- C語言 sprintf()用法及代碼示例
- C語言 outtextxy()用法及代碼示例
- C語言 isgraph()用法及代碼示例
注:本文由純淨天空篩選整理自Souvik Saha大神的英文原創作品 printf() function in C language with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。