英文: C Use an array variable in a function parameter? 问题 我有一个二维字符串数组 char* d2Array[valueA][valueB]。 这...
如何在Mac OS X中加载核心转储文件?
英文: How to load coredumps in mac osx? 问题 我正在尝试学习如何使用gdb(教程链接:https://www.cse.unsw.edu.au/~learn/debu...
意外输出以及我的C程序出现分段错误
英文: Unexpected Output plus segmentation error with my C program 问题 以下是翻译好的部分: 我正在尝试学习编程,并尝试以下C代码。然而,...
调用Linux内核模块中的可执行文件。
英文: Call a executable from Linux Kernel Module 问题 I am trying to call a executable from Linux Kernel...
如何在C中的for循环中比较一个”字符串用户输入”和”数组中的字符串列表”。
英文: How to compare a "string user input" with a "list of string in a array" insi...
如何在C中反转数组中的字符串。
英文: how to reverse string in array in C 问题 我已翻译以下代码段: char *problem58() { char temp, *result = (char...
如何正确释放链表
英文: How to free a linked list properly 问题 第一段代码如下: 释放链表所需的任务,我使用了下面的第一段代码。但是在检查器中出现了一些错误[什么错误?],而且建议...
生成所有阶数为n的非同构非二分图连通图。
英文: Generate all non-isomorphic non-bipartite connected graphs of order n 问题 我知道nauty可以生成n个顶点的bipart...
如何使用递归而不使用循环在C中打印星形金字塔图案?
英文: How do I print a star pyramid pattern using recursion without any loop in C? 问题 以下是翻译好的部分: 这是输出结...
gcc为什么需要未使用的_Generic值的定义?
英文: Why does gcc need the definition of unused _Generic values? 问题 以下是翻译好的部分: 这段代码不会在gcc和clang编译器中编译...
146