printf中的指针变量_C语言中的printf()示例/变量

printf中的指针变量

As we know that, printf() is used to print the text and value on the output device, here some of the examples that we wrote to use the printf() in a better way or for an advance programming.

众所周知, printf()用于在输出设备上打印文本和值,这里是我们编写的一些示例,它们以更好的方式或为了进行高级编程而使用了printf() 。

1) Print normal text

1)打印普通文字

printf ("Hello world");

Output

输出量

Hello world

2) Print text in new line

2)在新行中打印文本

printf ("Hello world\nHow are you?");

Output

输出量

Hello world
How are you?

3) Print double quote

3)打印双引号

To print double quote, we use \".

要打印双引号,我们使用\“ 。

printf("Hello \"World\", How are you?\n");

Output

输出量

Hello "World", How are you?

4) Print percentage sign (%)

4)列印百分比符号(%)

To print percentage sign/ character, we use %%.

要打印百分比符号/字符,我们使用%% 。

printf ("Hey I got 84.20%% in my final exams\n");

Output

输出量

Hey I got 84.20% in my final exams

5) Print octal value

5)打印八进制值

To print octal value, we use %o (It's alphabet o in lowercase)

要打印八进制值,我们使用%o (小写的字母o)

int num = 255;
printf("num in octal format: %o\n", num);

Output

输出量

num in octal format: 377

6) Print hexadecimal value (with lowercase alphabets)

6)打印十六进制值(使用小写字母)

To print hexadecimal value, we use %x (its alphabet 'x' in lowercase) - as we know that a hexadecimal value contains digits from 0 to 9 and alphabets A to F, "%x" prints the alphabets in lowercase.

要打印十六进制值,我们使用%x (小写的字母“ x”)-因为我们知道十六进制值包含从0到9的数字和字母A到F, “%x”以小写字母打印。

int num = 255;
printf ("num in hexadecimal format(lowercase) : %x\n", num);

Output

输出量

num in hexadecimal format(lowercase) : ff

7) Print hexadecimal value (with uppercase alphabets)

7)打印十六进制值(使用大写字母)

To print hexadecimal value, we use %X (it's alphabet X in uppercase) - as we know that a hexadecimal value contains digits from o to 9 and alphabets A to F, "%X" prints the alphabets in uppercase.

要打印十六进制值,我们使用%X (大写字母X)-因为我们知道十六进制值包含从o到9的数字和字母A至F, “%X”将大写字母。

int num = 255;
printf ("num in hexadecimal format(uppercase) : %X\n", num);

Output

输出量

num in hexadecimal format(uppercase) : FF

8) Print long string using \ (slash)

8)使用\(斜杠)打印长字符串

If there is a long string, that you want to print with a single printf() with two or more lines, we can use slash (\).

如果有一个很长的字符串,而您想使用带有两行或更多行的单个printf()进行打印,则可以使用斜杠( \ )。

printf ("Hello world, how are you?\
I love C programing language.\n");

Output

输出量

Hello world, how are you?    I love C programing language.

9) Print backslash (\)

9)打印反斜杠(\)

To print backslash (\), we use double backslash (\\).

要打印反斜杠( \ ),我们使用双反斜杠( \\ )。

printf ("The file is store at c:\\files\\word_files\n");

Output

输出量

The file is store at c:\files\word_files

10) To get total number of printed characters

10)获取打印字符总数

We can also get the total number of printed character using printf(), printf() returns the total number of printed character, that we can store in a variable and print.

我们还可以使用printf()获得打印字符的总数, printf()返回打印字符的总数,我们可以将其存储在变量中并进行打印。

int len = 0;
len = printf ("Hello\n");
printf ("Length: %d\n", len);

Output

输出量

Hello
Length: 6

11) Print integer value 5 digit left padded with 0

11)打印整数值左5位填充0

To print value with 0 padded in 5 digits, we can use "%05d".

要打印以5位数字填充0的值,我们可以使用“%05d” 。

int num = 255;
printf ("num (padded): %05d\n", num);

Output

输出量

num (padded): 00255

12) Print text with left and right padding

12)使用左右填充符打印文本

To print left padded text with space, we use "%20s" - Here, 20 is the number of characters, if string contains 5 characters then 15 spaces will be added at the left of the text.

要打印带有空格的左填充文本,我们使用“%20s” -这里的字符数为20,如果字符串包含5个字符,则将在文本左侧添加15个空格。

Similarly, to print right padded text with space, we use a flag "-" like "%-20s" - Here, 20 is the number of characters, if string contains 5 characters then 15 spaces will be added at the right of the text.

类似地,要打印带有空格的右填充文本,我们使用标记“-”,例如“%-20s” -这里的20是字符数,如果字符串包含5个字符,则将在文本右边添加15个空格。

printf ("str1=\"%20s\", str2=\"%-20s\"\n", "Hello", "World");

Output

输出量

str1="               Hello", str2="World               "

13) Print float value to specified number of digits after the decimal point

13)将浮点值打印到小数点后的指定位数

To print float value with specified number of digits after the decimal, we use "%.2f". Here, 2 is the number of digits after the decimal point.

要在小数点后打印具有指定位数的浮点值,请使用“%.2f” 。 在此,2是小数点后的位数。

float val = 1.234567;
printf("val = %.2f\n", val);

Output

输出量

val = 1.23

14) Print integer value with "%i" format specifier

14)使用“%i”格式说明符打印整数值

While printing the value "%d" and "%i" are same, they are used to print an integer value, we can also print the integer value by using "%i".

虽然打印值“%d”和“%i”相同,但是它们用于打印整数值,我们也可以使用“%i”打印整数值。

int num = 255;
printf("num = %i \n", num);

Output

输出量

num = 255

15) “%p” can be used to print the address of a variable

15)“%p”可用于打印变量的地址

Since, address of the variable is a large hexadecimal value - to print it we should not (or cannot) use "%d", "%i" etc. To print an address of a variable, we must use "%p".

由于变量的地址是一个大的十六进制值-要打印它,我们不应该(或不能)使用“%d” , “%i”等。要打印变量的地址,我们必须使用“%p” 。

int num = 255;
printf("Address of num is: %p\n", &num);

Output

输出量

Address of num is: 0x7ffca0b5855c

上述所有printf()语句的示例 (Example with all above printf() statements )

#include <stdio.h>
int main()
{
int num = 255;
int len = 0;
float val = 1.234567;
printf("Hello World");
printf("Hello world\nHow are you?");
printf("Hello \"World\", How are you?\n"); 
printf ("Hey I got 84.20%% in my final exams\n");
printf("num in octal format: %o\n", num);
printf ("num in hexadecimal format(lowercase) : %x\n", num);
printf ("num in hexadecimal format(uppercase) : %X\n", num);
printf ("Hello world, how are you?\
I love C programing language.\n");
printf ("The file is store at c:\\files\\word_files\n");
len = printf ("Hello\n");
printf ("Length: %d\n", len);
printf ("num (padded): %05d\n", num);
printf ("str1=\"%20s\", str2=\"%-20s\"\n", "Hello", "World");
printf("val = %.2f\n", val);
printf("num = %i \n", num);
printf("Address of num is: %p\n", &num);
return 0;
}

Output

输出量

Hello WorldHello world
How are you?Hello "World", How are you?
Hey I got 84.20% in my final exams
num in octal format: 377
num in hexadecimal format(lowercase) : ff
num in hexadecimal format(uppercase) : FF
Hello world, how are you?    I love C programing language.
The file is store at c:\files\word_files
Hello
Length: 6
num (padded): 00255
str1="               Hello", str2="World               "
val = 1.23
num = 255
Address of num is: 0x7ffca0b5855c

翻译自: https://www.includehelp.com/c-programs/printf-examples-variations.aspx

printf中的指针变量

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/542878.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

System Center Technical Preview DPM(2016)对Exchange2016的灾难恢复

其实备份很简单&#xff0c;就是做好备份计划即可&#xff0c;但往往客户最担心的是备份的东西在真的灾难恢复时是否可以恢复出来可用&#xff0c;这才是考验备份软件的最关键时刻&#xff0c;因此象备份Exchange这样的应用时对于管理员来说除了会玩备份软件外还需要熟悉Exchan…

as真机调试_如何使用真机调试android程序

展开全部第一步&#xff1a;将我们开发所用的Android真机的USB调试功能打开(打开方法为Settings(设置32313133353236313431303231363533e59b9ee7ad9431333365656531)Applications(应用程序)Development(开发)勾选USB debugging(USB调试))&#xff0c;然后通过usb连接线连接到开…

css如何制作横幅,基本的CSS横幅

我确定这一定非常简单&#xff0c;但我遇到了问题&#xff01;我想要的效果是每页上横幅或标题的纯色块&#xff0c;其中包含一些文字。但是为了增加一些装饰&#xff0c;我已经为每一面做了一个小图形&#xff0c;这只是一个从横幅颜色渐变为白色的小方块。所以整体效果是一个…

教你在Ubuntu上体验Mac风格

导读老实说&#xff0c;我是个狂热的 Ubuntu 迷&#xff0c;我喜欢 Ubuntu 默认的 Unity 主题样式外观。此外&#xff0c;还有很多关于 Ubuntu 14.04 的漂亮图标主题样式 可用来美化默认的外观。但正如我上面提到的仍有很多用户喜欢 Mac OS X 的主题样式&#xff0c;我希望这篇…

在Python中升级灰度图像

Upscaling of an image refers to enlarging the size of an image. 图像放大是指放大图像的大小。 In this program, we will be using two functions of OpenCV-python (cv2) module.. lets see their syntax and descriptions first 在此程序中&#xff0c;我们将使用Open…

开机未发现nvidia控制面板_Windows10或者其他操作系统开机提示“未发现NVIDIA控制面板,从Microsoft Store中安装NVIDIA控制面板”的解决办法...

昨天深夜,有一个朋友加QQ说他电脑出了问题,不知道咋的就变成了提示“未发现NVIDIA控制面板,从Microsoft Store中安装NVIDIA控制面板” 里面数据还是挺重要的,问是否有办法操作,具体看图; 经过询问得知,客户是在安装一个软件,反复运行后不出现,以为中毒了,就重启了一下…

打印机服务器未响应,打印机不能打印,点击打印后没反应

①我的电脑&#xff0c;右键点管理&#xff0c;服务和应用程序里的服务&#xff0c;找到Print Spooler&#xff0c;启动类型自动&#xff0c;服务状态点启动&#xff0c;确定重启。②控制面板--》管理工具--》服务---》print spooler改为启动。③打印机没设置成为默认打印机&am…

HDU 5145 - NPY and girls

题意&#xff1a; cases T(1≤T≤10) (0<n,m≤30000) (0<ai≤30000)    n个数ai 表示n个女孩所在教室 m次询问 [L,R]&#xff08;1 < L < R < n&#xff09;   问访问所有女孩的顺序方案数(进教室顺序)为多少(一次进教室只能访问一个人) 分析&…

安卓投屏软件_有哪些好用又免费的手机投屏到电脑的软件?

推荐一款免费、好用的投屏软件&#xff0c;叫做【快投屏】&#xff0c;支持多端无线一键投屏、远程投屏&#xff0c;不限制使用时间&#xff0c;不压缩投屏画质。快投屏 - 手机投屏到电视,电脑的无线投屏软件​支持以下几种投屏&#xff1a;手机投电视手机投电脑手机投手机电脑…

dnf韩服服务器维护中,DNF2019韩服4.30维护:这些职业被加强

DNF韩服4.30维护DNF2019韩服4.30更新内容 DNF95版本4.30韩服更新内容 DNF95版本职业平衡。相信大家都很想知道吧&#xff0c;一起来看看吧。地下城一直被称为鬼剑士的游戏&#xff0c;无论是在何地图&#xff0c;如果看不到鬼剑士的话那就是太阳打西边出来了&#xff0c;9成勇士…

2019写给对象的话_恋爱中写给对象看的说说 2019最流行的情侣间情话

1.我发现你是个照骗&#xff0c;因为本人比照片好看多了。2.我昨晚梦见你了&#xff0c;不知是你想我了还是我想你了。3.你有地图吗&#xff0c;我在你的眼睛里迷路了。4.我已经好久没这样喜欢一个人了&#xff0c;就是想到你就会笑的那种。5.当自己最爱的人和最爱自己的人是同…

java 实现 堆排序算法_C程序实现堆排序算法

java 实现 堆排序算法Heap Sort is a comparison-based sorting algorithm that makes use of a different data structure called Binary Heaps. Let us understand some important terms, 堆排序是一种基于比较的排序算法&#xff0c;该算法利用称为二进制堆的不同数据结构。…

嵌入式linux面试题解析(四)——逻辑推理一

嵌入式linux面试题解析&#xff08;四&#xff09;——逻辑推理一1、谁是罪犯问题一位法官在审理一起盗窃案时&#xff0c;对涉及到的四名嫌疑犯A、B、C、D进行了审问。四人分别供述如下&#xff1a;A&#xff1a;“罪犯在B、C、D三人之中。”B&#xff1a;“我没有作案&#x…

linux rsa登录改密码登录_LINUX中RSA认证登录SSH(不需要输入密码登录)2种方法

方法一&#xff0c;有的时候经常需要登录ssh&#xff0c;每次都需要输入密码&#xff0c;会比较繁琐。所以设置了一下使用RSA公钥认证的方式登录Linux。首先需要在服务器端设置/etc/ssh/sshd_config# vim /etc/ssh/sshd_config修改如下两行为yes。其实大多数情况下不用修改&…

b+树时间复杂度_数据结构:线性表,栈,队列,数组,字符串,树和二叉树,哈希表...

作者&#xff1a;张人大代码效率优化复杂度 -- 一个关于输入数据量n的函数时间复杂度 -- 昂贵与代码的结构设计有着紧密关系一个顺序结构的代码&#xff0c;时间复杂度是O(1), 即任务与算例个数 n 无关空间复杂度 -- 廉价与数据结构设计有关数据结构 -- 考虑如何去组织计算机中…

figure服务器无法显示,求大神帮帮忙,看一下为什么第二个figure出不来,只能显示第一个...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼Iimread(C:\Users\Administrator\Desktop\123.jpg);figure(1)subplot(3,2,1),imshow(I), title(原始图像);I1rgb2gray(I);subplot(3,2,2),imshow(I1),title(灰度图像);I2edge(I1,roberts,0.09,both);subplot(3,2,3),imshow(I2),tit…

python 示例_带有示例的Python File read()方法

python 示例文件read()方法 (File read() Method) read() method is an inbuilt method in Python, it is used to read the content of the file, by using this method we can read the specified number of bytes from the file or content of the whole file. read()方法是…

评价最高影片JAVAlibrary_视频 | 手游大神,动画导演,机圈新贵,极客怎么评价《愤怒的小鸟2》?...

谁能想到&#xff0c;迄今为止口碑最好的「游戏改编电影」竟然来自一个手机游戏IP&#xff1f;&#xff01;《愤怒的小鸟2》是有史以来评价最好的游戏改编电影。—— http://Screencrush.com《愤怒的小鸟2》凭什么能在打分平台上获得游戏改编电影最高分&#xff1f;—— http:/…

如何安装_如何安装吸顶灯?吸顶灯安装注意事项

摘要&#xff1a;灯是我们每个家庭都有的照明装置&#xff0c;它的造型和光能效果能直接影响到家居生活的氛围、美观度以及健康状况。吸顶灯的造型功能也随着科技的发展在不断发生多元化的改变。如今市面上的吸顶灯既有简单的装置又不比吊灯少了时尚奢华&#xff0c;让在层高较…

win10虚拟网络服务器,win10 虚拟专用网络服务器配置

win10 虚拟专用网络服务器配置 内容精选换一换本节将介绍在华为云关系型数据库服务的管理控制台创建实例的过程。目前&#xff0c;RDS for SQL Server支持“包年/包月”和“按需计费”购买&#xff0c;您可以根据业务需要定制相应计算能力和存储空间的华为云关系型数据库实例。…