什么是Windows上的 /dev/null 的等价物?
/dev/null
上云精选
2核2G云服务器 每月9.33元起,个人开发者专属3年机 低至2.3折
根据此 message on the GCC mailing list ,您可以使用文件"nul“而不是/dev/null:
#include <stdio.h> int main () FILE* outfile = fopen ("/dev/null", "w"); if (outfile == NULL) fputs ("could not open '/dev/null'", stderr); outfile = fopen ("nul", "w"); if (outfile == NULL) fputs ("could not open 'nul'", stderr);