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 |
Program to find the sum of digits of a given number until the sum becomes a single digit
What is the explanation for prototype function in c?
What is meant by keywords in c?
write the program to find multiplication of 2-D matrix??????????
Which type of language is c?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is pragma c?
ATM machine and railway reservation class/object diagram
What is a dynamic array in c?
Not all reserved words are written in lowercase. TRUE or FALSE?
regarding pointers concept
Given an unsigned integer, find if the number is power of 2?