Gráficos em c
#include<graphics.h>
main()
{
int driver, mod;
driver = VGA/DETECT;
mod = VGAHI/Optional if DETECT is used;
initgraph(&driver, &mod,"C:/tc/bgi");
putpixel(320,240,RED);
getch();
closegraph();
}
Baqir Ali