Explain following declaration
int *P(void);
and
int (*p)(char *a);
Answer Posted / tibu
int *p(void) - says this is function with null parameter
and returns a pointer to an integer.
int (*p)(char *a) - says this is function with a pointer to
a char a as parameter and returns a pointer to an integer.
Is This Answer Correct ? | 19 Yes | 19 No |
Post New Answer View All Answers
In C programming, what command or code can be used to determine if a number of odd or even?
Why use int main instead of void main?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What do you mean by keywords in c?
Wt are the Buses in C Language
show how link list can be used to repersent the following polynomial i) 5x+2
What is the use of c language in real life?
What are variables c?
What is the use of volatile?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is the use of linkage in c language?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
Why & is used in c?