What is malloc and calloc?
No Answer is Posted For this Question
Be the First to Post Answer
How can I do graphics in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Under what circumstances does a name clash occur?
Write a program to find factorial of a number using recursive function.
Tell me when is a void pointer used?
What are the types of type qualifiers in c?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
WHAT IS MEANT BY LIFE?
pierrot's divisor program using c or c++ code
Write a program on swapping (100, 50)
How can I read data from data files with particular formats?