Hello everybody,
This one for those who like graphics programming with C. Can any one of you tell me how to make stand alone graphics exe through C.
i have read a paragraph on this topic but its not happenning.
It will very nice of you if you code simple program like this:
#include<stdio.h>
#include<graphics.h>
#include<conio.h>
int main(void)
{
int gd=DETECT,gm;
initgraph(&gd,&gm,"c:\\tc\\bgi');
setcolor(RED);
circle(100,100,25);
}
<< moderator edit: added code tags: [code][/code] >>
and show me how to make it standalone exe. :sad: :confused: