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 |
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }
How can you find the day of the week given the date?
Which is the memory area not included in C program? give the reason
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
what is a non volatile key word in c language?
What are the types of pointers in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
what is constant pointer?
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?