13 lines
122 B
C
13 lines
122 B
C
|
|
#include<graphics.h>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
initwindow(320,240,"Red Pixel");
|
||
|
|
|
||
|
|
putpixel(100,100,RED);
|
||
|
|
|
||
|
|
getch();
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|