I am currently working on a program that will generate the mandelbrot set. While I am able to code the set, I do not know how to produce an image using C. Do I have to write to a new file? Do I need a special program to draw? Are there any libraries or functions that I have to use? I have a semesters worth of experience in intro C from university. I am using MinGW and eclipse if that helps.
Thanks
You could use something like libpng to write to PNG, but there's gonna be a learning curve there.
http://www.libpng.org/pub/png/libpng.html
Or you could write to BMP which should be simpler. This question is relevant: Writing BMP image in pure c/c++ without other libraries (check out the second answer for code)
Or you can use SDL and then: http://www.libsdl.org/release/SDL-1.2.15/docs/html/sdlsavebmp.html
Basically, you're going to need to use some kind of library unless you output a really basic file format.