c函数dir命令加了getch()还是不能正常显示?

#include "stdio.h"
int main()
{
printf("about to sppawn command.com and run a dos command\n");
system("dir");
return 0;
getch();
}

慕桂英3389331
浏览 604回答 2
2回答

白板的微信

请把getch()放到return 0前面。对补充的问题:如果想指定目录直接在system函数里写,就如system("dir d:\");
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python