就是我在vs使用c语言编了一个五行红旗代码,完事后我想在窗口里添加一个文本部分代码如下
#include <conio.h>
#include<stdlib.h>
#include <stdio.h>
#include <easyx.h>
#include <math.h>
#include <graphics.h>
int main(void)
{
/* clear the screen */
system("cls");
/* create a text window */
window(10, 10, 80, 25);
/* output some text in the window */
cputs("This is within the window\r\n");
/* wait for a key */
getch();
return 0;
}
之后他就提示window为未定义标识符