Cannot open include file: 'msg.h': No such file or directory
这是因为什么?我用的是vc++6.0
程序代码:
#include "msg.h" void main() { int p=0,i=0; srand((ui)time(0)); graphics_mode(105,30); console_title("满天星"); while(1) { p = rand()%30; i = rand()%105; graphics_gotoxy(i,p); graphics_color(i,0); printf("*"); console_sleep(2); } return 0; }
fatal error C1083: Cannot open include file: 'msg.h': No such file or directory
- 1 error(s), 0 warning(s)