Define function pointers?
Answer / preeti singh
A function pointer is a type of pointer that points to a
function, for e.g. a pointer to the function :
int fun(int a,int b)
can be declared as :
int(*myptr)(int a,int b);
here myptr is a type of pointer which can point to any
function which takes two integer arguments and returns int.
| Is This Answer Correct ? | 5 Yes | 0 No |
which do you prefer C or Pascal?
What is chain pointer in c?
What is difference between structure and union with example?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
how to exchnage bits in a byte b7<-->b0 b6<-->b1 b5<-->b2 b4<-->b3 please mail me the code if any one know to rajeshmb4u@gmail.com
difference between semaphores and mutex?
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
write a program to compare 2 numbers without using logical operators?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
WHAT IS FLOAT?
What are qualifiers and modifiers c?
write a program to print infinte number