what is the advantage of function pointer
Answer Posted / satty
Functional pointer are more readable and executed run time
| Is This Answer Correct ? | 43 Yes | 13 No |
Post New Answer View All Answers
What is modifier & how many types of modifiers available in c?
What does the c in ctime mean?
Why c is called a middle level language?
where are auto variables stored? What are the characteristics of an auto variable?
What are the three constants used in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the size of enum in c?
How can I discover how many arguments a function was actually called with?
What is a static function in c?
Write a program to print factorial of given number using recursion?
Give basis knowledge of web designing ...
What is malloc calloc and realloc in c?
What is the sizeof () operator?
What is function prototype in c language?
What are the advantages of c preprocessor?