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