September 24, 2009
Regarding the GCC C compiler for Linux is it possible to execute Graphical programs i mean even the simple circle and other geometrical shapes using the standard C graphical commands?
- Print This
- Like (0 likes)
TsaniApani | February 20, 2010
The closest thing to "standard C graphical commands" that you'll get is...
The closest thing to "standard C graphical commands" that you'll get is openGL. There are some very simple tutorial programs out there starting with:
http://nehe.gamedev.net/data/lessons/lesson.asp?lesson=02
At the bottom of the screen you'll notice there's 3 different linux examples with various tradeoffs involved...
Like
(0 likes)

C doesn't have "standard" output libraries !you can output some graphics by...
C doesn't have "standard" output libraries !
you can output some graphics by using external libs for framebuffer/libjpeg/vgalibs (without X) or something else for XWin (a lot of them: GTK, ...)
Like
(0 likes)