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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。