6 调用SetConsoleCursorInfo接口使其生效。if(SetConsoleCursorInfo(fd,&cinfo)) printf("执行成功\n");else printf("执行失败\n");编译运行可以看到光标隐藏了。7 所有代码如下:#include <windows.h>#include <stdio.h>int main(int argc,char * argv[]){ HANDLE fd = GetStdHandle(STD_OUTPUT_HANDLE); CO...