其他分享
首页 > 其他分享> > for,getchar(),while,scanf的一些注意点及疑惑解答

for,getchar(),while,scanf的一些注意点及疑惑解答

作者:互联网

for

一、for的初始化,判断,调整三部分可以省略,for(;;)省略部分判定为真,就会死循环 。二、

for不可以用到以上的格式!!!


 

getchar()

如下例:

int ch =getchar()

问:为什么gatchar明明接受的是一个字符,却要用整形int来存储

答:因为比如接收了一个字符“a”,其本质是ascll码值97,所以可放入整形内。


while

 


scanf

当scanf的输入为数组时,不用在数组前加上&取地址符,因为数组本身就为一个地址了。


 

标签:点及,省略,int,scanf,while,数组,getchar
来源: https://blog.csdn.net/Green_756/article/details/121055900