Is it possible to have a function as a parameter in another function?
No Answer is Posted For this Question
Be the First to Post Answer
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
Are there any problems with performing mathematical operations on different variable types?
What is a good way to implement complex numbers in c?
What is the difference between #include and #include 'file' ?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
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 are data types in c language?
How to avoid buffer overflow?
Where are the auto variables stored?
Why is c faster?
Write a program which returns the first non repetitive character in the string?