英文: Calling function and creating variable in one go 问题 我可能想得太多了,已经断断续续编码了几个月,但现在在寻找关于一些非常简单的最佳实践建议。...
递增指针输出
英文: Incrementing Pointers Output 问题 y在指向下一个位置,其值为32561时为什么是20?以及为什么y++会改变事情? y指向下一个位置的值为32561,但y的值仍然...
无法打印全局变量地址的绝对地址。
英文: Not able to print the absolute address of global variable address 问题 裸机的RISC-V GCC编译代码并链接。我可以将我的...
这个程序为什么无法正确地将字符写入文件,并且会陷入无限循环?
英文: Why does this program fail to write the character in the file properly and instead get stuck in ...
为什么在使用kill()后,子进程会变成僵尸进程?
英文: Why is the child process a zombie after kill() it 问题 我有一个多进程程序。简要说明问题,子进程将被阻塞,主进程判断子进程是否仍然存在,如果存...
C优化使用编译指令,它是否会递归?还是仅仅按照文件中指令的顺序执行?
英文: C optimization with pragmas, does it recurse? Or does it simply use look at the order of the pra...
“value not ignored \”(argaddr(0, &fva)\””
英文: value not ignored "(argaddr(0, &fva)" 问题 抱歉,以下是翻译好的部分: 我想要添加 xv6 页面表功能。然而,出现了一些关于 ...
这两者之间有任何区别吗?
英文: Is there any difference between these two? 问题 我不知道这是否可能,但我感到困惑。 它们是否相同? 我知道在第一种情况下,我们动态分配了20个int...
“Malloc给我返回一个不为空的字符串,但我无法将其清空”
英文: Malloc is giving me a string that isn't empty, and I'm unable to empty it 问题 我正在用C语言编写一个...
数组变量在我给出section属性时没有分配到数据部分,为什么?
英文: Array variables didn't get allocated in a data section when I gave section attribute, why? 问...
146