what r callback function?
Answer / raghu
A function that is passed (by reference) to another
function. The other function calls the callback function
under defined conditions
| Is This Answer Correct ? | 5 Yes | 1 No |
Place the #include statement must be written in the program?
In which header file is the null macro defined?
How to write c functions that modify head pointer of a linked list?
Explain why can’t constant values be used to define an array’s initial size?
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
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
How can I read in an object file and jump to locations in it?
When can you use a pointer with a function?
what is a stack
Why void main is used in c?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
show how link list can be used to repersent the following polynomial i) 5x+2