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 |
In a header file whether functions are declared or defined?
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
write a program without using main function?
What is unary operator?
What is #include in c?
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!+....
What are extern variables in c?
What is the meaning of int *x[]();?
What are the concepts introduced in OOPs?
second highest number in a given set of numbers
What are the types of data types and explain?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )