how we can make 3d venturing graphics on outer interface
Post New Answer View All Answers
In C programming, what command or code can be used to determine if a number of odd or even?
How can I get random integers in a certain range?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Why is not a pointer null after calling free?
What does typeof return in c?
What is the use of function overloading in C?
What does it mean when the linker says that _end is undefined?
Which is better malloc or calloc?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Tell me the use of bit field in c language?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Why we use void main in c?
What does void main return?
which is conditional construct a) if statement b) switch statement c) while/for d) goto