what is function pointer?
Answers were Sorted based on User's Feedback
Answer / preethi v
function pointer will store the address of a specific function
for eg:int (*p) ()
p is a function pointer will store the address of one function at a time.
| Is This Answer Correct ? | 19 Yes | 1 No |
Answer / sathish
we can able to give function as a argument into a function
by using function pointer
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a Genralised LInked List?? Please give a detailed explation of it..
What are the advantages of c language?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
which one low Priority in c? a)=,b)++,c)==,d)+
how will you write a program on linked lists using JAVA programming???????????
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
Why do we use header files in c?
write a program to remove duplicate from an ordered char array? in c
Explain what are reserved words?
Explain what are preprocessor directives?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?