How can I do graphics in c?



How can I do graphics in c?..

Answer / Ankur Roj

To do graphics in C, you can use libraries such as OpenGL, SDL (Simple DirectMedia Layer), or SFML (Simple and Fast Multimedia Library). Each library offers different features and has its own learning curve.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

In a header file whether functions are declared or defined?

1 Answers   TISL,


what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555

1 Answers   Wipro,


write a program without using main function?

2 Answers   TCS,


What is unary operator?

1 Answers  


What is #include in c?

1 Answers  


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

3 Answers   Ignou,


What are extern variables in c?

1 Answers  


What is the meaning of int *x[]();?

1 Answers  


What are the concepts introduced in OOPs?

3 Answers  


second highest number in a given set of numbers

3 Answers   TCS,


What are the types of data types and explain?

1 Answers  


which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )

1 Answers   C DAC,


Categories