I want to run a C program that draws a circle. The program is compiling with no error and it is running. After getting the values like radius from the user, I get the error like this :

BGI error: Graphics not initialized ( use "initgraph")

Even though in my source code I have added this line :

int gmode,gdrive=DETECT;
initgraph(&gdrive,&gmode,"c\\tc\\bgi");

Still I'm getting error.

I'm using Windows and I couldn't figure out where I went wrong. Can anyone help me in this regard?

Thanks in advance.

link|improve this question

2  
C:\\tc\\bgi you mean this path right? – Jesus Ramos Sep 30 '11 at 4:31
1  
In windows your path starts with Drive:\\path\\to\\folder if you want a literal string of it – Jesus Ramos Sep 30 '11 at 4:33
1  
Did you just copy that without fixing it? stackoverflow.com/questions/3316337/c-program-line-not-drawing/… – Hans Passant Sep 30 '11 at 4:34
1  
@HansPassant Wow that's quite a find. – Jesus Ramos Sep 30 '11 at 5:10
1  
@Jesus, credit to the OP for upvoting it today. Not for reading it :) – Hans Passant Sep 30 '11 at 5:14
show 3 more comments
feedback

2 Answers

up vote 1 down vote accepted

Your path in initgraph is wrong use "c:\\tc\\bgi"

link|improve this answer
1  
Backslashes must be escaped in literals. – Alex Sep 30 '11 at 4:35
1  
@Alex Yeah I forgot the markup on here messes up the backslashes (you have to use 4 to get 2) thanks – Jesus Ramos Sep 30 '11 at 4:36
thanks for the answer! – GroovyUser Sep 30 '11 at 4:44
feedback

Could be multiple reasons:

  • wrong path to the bgi file (I see the colon is missing)
  • unsupported graphics mode (don't expect DOS graphics apps to work under Vista and up)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.