英文: Loop is not working properly while taking input in array 问题 scanf的循环对于索引(索引为2)不起作用。在printf循环中,两个...
C中的宏比较结果不正确。
英文: Macro comparison in C has incorrect result 问题 以下是代码的翻译: 为什么以下代码的输出是 `10`,而不是预期的 `20`? #define A ...
网络在将接口设置为混杂模式后中断。
英文: Network is Down after setting interface to Promiscuous Mode 问题 网络在通过以下方式设置接口为混杂模式后总是断开连接: memset...
地址引用减法是如何工作的?
英文: How does subtracting an address reference work? 问题 I think the value of z should be 40 because a...
C: 使用pthread_create和结构参数时出现内存问题。
英文: C: memory issue with pthread_create and struct parameter 问题 看起来我有内存泄漏,有人可以告诉我我做错了什么吗? 我注释掉了一些代码以...
“-1 & postive integer” 总是返回正整数吗?
英文: Why "-1 & postive integer" alway return the postive integer? 问题 例如: printf("%d...
我编写了一个用C语言计算质数的程序,作为一项任务,但它没有运行。
英文: I wrote the program that calculate Prime numbers by C, as a assignment, but it didn't operat...
函数返回无效地址
英文: Function returns invalid address 问题 UPD:好的,我很抱歉,但显然我提供的示例不足以重现我的错误,这就是为什么我将尝试提供更多关于我正在做的事情的信息(我再...
当静态库需要位置无关代码
英文: When static library needs position independent code 问题 a.c是作为静态库liba.a构建的。 b.c是作为共享库libb.so构建的。 ...
x86代码读取输入并存入本地变量中?
英文: x86 code to read in input into a local variable? 问题 我是新来的,对x86汇编不太熟悉,已经阅读了这篇帖子,讨论了在NASM x86中使用sc...
146