gpt4 book ai didi

c - while(~scanf 在 C 中意味着什么?

转载 作者:行者123 更新时间:2023-12-02 09:06:02 24 4
gpt4 key购买 nike

我看了一些代码,我不知道 while(~scanf

的含义是什么
while(~scanf("%s", word+1) !=EOF)
{
int a= strlen(word+1);

我已经在谷歌上搜索过,但没有找到任何相关内容。请帮忙

最佳答案

分析表达式while(~scanf("%s", word+1) != EOF):

Run as long as the bitwise-inverted return value of scanf is not equal to the value of EOF.

分析等价表达式while(scanf("%s", word+1) != ~EOF):

Run as long as the return value of scanf is not equal to the bitwise-inverted value of EOF.

假设 EOF 通常全为 1,则此表达式本质上相当于:

while(scanf("%s", word+1) != 0)

这意味着:

Run as long as the return value of scanf is not 0.

或者简单地说:

Run until the return value of scanf is 0.

我仍然摸不着头脑,不知道这个分析是否正确。

求职面试的好问题(也是如何不编写代码的一个很好的例子)。

关于c - while(~scanf 在 C 中意味着什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58519896/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com