Lojzek
- 246
- 1
I would like to write a C program that outputs graphics and sound.
I use DevC++.
How can I do it?
I use DevC++.
How can I do it?
Lojzek said:I would like to write a C program that outputs graphics and sound.
I use DevC++.
How can I do it?
I don't know anything about graphics types. I just want to find any way to put colored points on the screen on the specified coordinates calculated in C. I use windows. Can you tell me more about GDI? Is this a program that I can download? And how can I transfer information between C and GDI? I suppose data calculated in C must be put to a file in a specific format?computerex said:Well, what type of graphics? Aimed at what operating system? In windows, you can use GDI (graphics device interface) to do 2D vector graphics, and also use bitmaps. You might want to use a cross platform graphics library such as OpenGL to do your graphics if you want to port your application to other operating systems.