我想确切地知道,什么是 C 编程语言中的空语句?并解释它的典型用法。
我找到了以下代码段。
for (j=6; j>0; j++)
;
和
for (j=6; j>0; j++)
最佳答案
从 msdn 页面:
了解更多:https://msdn.microsoft.com/en-us/library/1zea45ac.aspx
当您想查找字符串中某个字符第一次出现的索引时
int a[50] = "lord of the rings";
int i;
for(i = 0; a[i] != 't'; i++)
;//null statement
//as no operation is required
关于c - 什么是 C 中的空语句?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40440400/