C语言
justinzwd
脚踏实地
展开
-
CLion中malloc头文件显示未找到
‘malloc.h’ file not found解决办法是将 #include <malloc.h> 改为#include <sys/malloc.h>原创 2018-12-19 20:37:39 · 4471 阅读 · 1 评论 -
CLion This file does not belong to any project target, code insight
CLion This file does not belong to any project target, code insight features might not work properly.我新建了一个名称为“haha.c”的文件然后CLion提示上图所示的解决方法有两个:1.左面New新建时不要选择File或者New Scratch File2.如果已经建好了,那么就在C...原创 2018-12-19 21:16:53 · 5681 阅读 · 0 评论 -
VC新手安装出现 cannot execute 'c1'错误解决办法
将 VC98/bin/C1XX.dll 改为 C1.dll就可以了原创 2018-12-20 00:38:44 · 2323 阅读 · 0 评论 -
MAC环境下 VS Code中C语言头文件导入错误
今天重新拾起了C语言,下载了vs code和CLion, 然后发现vs code写好代码之后头文件下方出现波浪线表示错误,百思不得其解。然后看网上解答,找到了答案,好像是因为需要路径设置#include errors detected. Please update your includePath. IntelliSense features for this translation unit...原创 2018-12-16 16:46:21 · 3279 阅读 · 0 评论 -
CLion工程中只能有一个main函数 &&怎么同时编写多个main函数的C文件
记得大一学C语言的时候,我们就知道一个工程中只能有一个main函数最近下载了CLion,我很懒,想在一个工程下建好几个c文件,里面都有main函数,结果编译运行的时候不通过这才想起来,无论有多少复杂的c文件和函数,绝对有且只有一个main函数记得把其他带有main函数的文件都删掉之后,将CMakeLists.txt 中对应的文件名也删掉...原创 2018-12-22 14:40:08 · 21362 阅读 · 15 评论