Why do we use static in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a “Hello World” program in “c” without using a semicolon?
Give me the code of in-order recursive and non-recursive.
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Multiply an Integer Number by 2 Without Using Multiplication Operator
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); }
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
If an old women's age is the same as her three grand daughters i,mean the number of days old child=the no of weeks old child=no of months old child .The total yrs of all these ppl is 114 yrs...then how old is the old woman? the yr has 365 days..and 30 days each month.
HOW CAN ADD OUR FUNCTION IN LIBRARY.
what is default constructor?
Is c easy to learn?
difference between native and cross compilers
What is the difference between null pointer and wild pointer?