英文: Display accented characters C/C++? 问题 我使用MinGW 4.9.1编写了一个程序,其中使用了"é"或"à"的pri...
为什么需要使用`gcc -o string string.c cs50.c`来编译?
英文: Why do I need to use gcc -o string string.c cs50.c to compile? 问题 当我开始学习cs50课程中的C语言时,运行get_strin...
在创建可变变量后,标量初始化器中存在多余的元素。
英文: Excess elements in scalar initializer after make an mutable variable 问题 我在尝试初始化数据以便在需要更改数据时进行更改时...
调用我使用x64 nasm编写的C程序中的函数应该如何进行?
英文: How would I go about calling a function inside a c program that I wrote using x64 nasm? 问题 我正在尝试...
无法看到SDL窗口在C中
英文: Can't see window of SDL in c 问题 I'm just trying to test my SDL installation (I've used apt i...
创建Windows任务栏通知
英文: C create Windows Taskbar Notification 问题 如何创建一个类似这样的弹出窗口:[![Popup](https://i.stack.imgur.com/W2h...
如何在Visual Studio上获取创建Windows内核驱动程序的能力。
英文: How to get the ability to make a windows kernel driver on Visual Studio 问题 这是我的第一个Stack Overflow...
segmentation fault when accessing pointer element
英文: segmentation fault when accessing pointer element 问题 我一直在尝试将一个字符串解析成单独的标记,用于我的项目的命令行界面。我已经创建了这个函...
When creating a single pointer array for representing a 2D array, what is the size of the pointer array? Is it row or column of the 2D array?
英文: When creating a single pointer array for representing a 2D array, what is the size of the pointe...
C声明实际上是如何解析的,基于这个有趣的差异?
英文: How are C declarations actually parsed, based on this interesting discrepancy? 问题 很常见看到声明和赋值结合在一...
146