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 |
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
wtite a program that will multiply two integers in recursion function
What is the difference between union and anonymous union?
What is assert and when would I use it?
Explain spaghetti programming?
Do you know the difference between malloc() and calloc() function?
how the size of an integer is decided? - is it based on processor or compiler or OS?
19 Answers HCL, JPR, Microsoft, nvidia,
How do you do dynamic memory allocation in C applications?
What is use of integral promotions in c?
What the different types of arrays in c?
What is array in c with example?