如何声明clearviewport(left, top, right, bottom);
时间: 2024-03-05 10:48:45 浏览: 90
在 C 语言中,可以使用以下语法声明 clearviewport 函数:
```c
void clearviewport(int left, int top, int right, int bottom);
```
其中,left、top、right、bottom 表示视口的左上角和右下角坐标。这个函数的作用是清除指定区域的图形。
需要注意的是,这个函数需要在 graphics.h 头文件中声明。如果没有引入 graphics.h,可以使用以下声明方式:
```c
extern void clearviewport(int left, int top, int right, int bottom);
```
但是需要注意的是,这个函数只能在 Borland Turbo C++ 编译器中使用,其他编译器可能不支持该函数。
阅读全文