what is the advantage of function pointer

Answer Posted / vels

Function pointers are used to call functions at runt time
instead of compile time .

Is This Answer Correct ?    55 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the general form of function in c?

607


What is the difference between c and python?

577


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2696


Can we access the array using a pointer in c language?

554


Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

2653






When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

797


What is s in c?

605


code for find determinent of amatrix

1511


What is the difference between union and structure in c?

567


What is c token?

600


What are the 5 organizational structures?

561


What is meant by keywords in c?

610


What is a MAC Address?

623


Are pointers integers in c?

604


C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions

606