How to implement call back functions ?
Answers were Sorted based on User's Feedback
Answer / priya
In computer programming, a callback is executable code that is passed as an argument to other code
Function Pointers provide the concept of callback functions.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ravikumar
pointer provide the call back function by using arguments
| Is This Answer Correct ? | 0 Yes | 0 No |
What is Heap?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
what is c
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Differentiate Source Codes from Object Codes
how to print this pyramid * * * * * * * * * * * * *
What is the use of a conditional inclusion statement in C?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
Why c language?
What is union and structure in c?