RosettaCodeData/Task/Draw-a-pixel/C/draw-a-pixel-1.c

13 lines
131 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include<graphics.h>
int main()
{
2026-02-01 16:33:20 -08:00
initwindow(320,240,"Red Pixel");
putpixel(100,100,RED);
getch();
return 0;
2023-07-01 11:58:00 -04:00
}