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 |
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
Explain the use of keyword 'register' with respect to variables.
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
What does struct node * mean?
explain what is an endless loop?
What are volatile variables in c?
how to find out the reverse number of a digit if it is input through the keyboard?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the purpose of the statement: strcat (S2, S1)?
What is methods in c?
write a programme to convert temperature from farenheit to celcius?