What are callback functions in c++

Answer Posted / bijaya kumar jena

Call back function is a member function call through by pointer.

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can you inherit a private class?

844


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2379


Will I be able to get a picture in D drive to the c++ program? If so, help me out?

1881


What is variable example?

791


Write a program to reverse a string using recursive function?

2031


program for insertion ,deletion,sorting in double link list

2446


What is the diamond problem in inheritance?

821


What is cohesion in oop?

843


Why is static class not inherited?

833


Get me a number puzzle game-program

1934


How is polymorphism achieved?

773


What causes polymorphism?

823


Can static class have constructor?

787


What is a class and object?

801


Who invented oop?

843