【求助】为何这段代码会被被杀软误报呢?
这个是一段取绝对路径的代码
#include "stdio.h" #include "unistd.h" #include "limits.h" #define _POSIX_PATH_MAX 256 # include "conio.h" int main(void) { char currentDir[_POSIX_PATH_MAX]; if( getcwd( currentDir, sizeof(currentDir)-1 ) != NULL ) { printf( "currentDir ==>> %s\n",currentDir ); } else { printf( "Show currentDir error\n" ); } getch(); //用来暂停一下,看输出结果 return 0; }

为何编译出来会被杀软认为是病毒呢?

老师说:会写代码的人多如牛毛,但写得很规范的却不多。代码要规范,养成好习惯~!