英文: Getting invalid token to Bison parser from yylex 问题 I have made lex/bison parser where I am usin...
无符号字符在字节操作上溢出
英文: Unsigned char overflow on byte operations 问题 我正在尝试创建一个函数,它可以将任何类型(float、int、double等)的两个数字相加,并将结果...
如何在x64系统上将C代码编译为32位。
英文: How to compile a c code as 32 bit on x64 system 问题 我正在尝试在一台x64机器上将C代码编译为32位,使用命令gcc -m32。但我遇到了以下...
在C中的隐式转换为double。
英文: Implicit conversion to double in C 问题 我正在尝试理解C语言中的隐式转换。我有以下C代码: #include <stdio.h> #includ...
错误并不总是发生,只是在MPI中偶尔发生。
英文: Error happens not always but just sometimes in MPI 问题 我正在尝试使用MPI和C执行并行程序,我设置了初始条件,以使每次运行都与上一次相同,...
Valgrind条件跳转或移动依赖于未初始化的值 – 所有变量已初始化
英文: Valgrind Conditional jump or move depends on uninitialised value(s) - all variables initiatlized...
如何在GTK C程序中创建用户输入框和输出区域,类似于shell或终端?
英文: How can I create a user input box and output area in a GTK C program, similar to a shell or term...
Is there a good way of converting an uint8_t array into a single float value that doesn't involve a loop?
英文: Is there a good way of converting an uint8_t array into a single float value that doesn't in...
如何在C中删除”extern”函数并能够从Golang中使用它们?
英文: How to remove "extern" functions in C and be able to use them from golang? 问题 我有一个C++库...
在Windows CMD中编译并运行C++代码。
英文: Compile and run C++ codes in Windows CMD 问题 我安装了MS-MPI。 我可以在Windows命令行中运行Python MPI代码。 我喜欢在Subli...
146