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
Can a local variable be volatile in c?
What is the best organizational structure?
Which is better malloc or calloc?
What is the maximum length of an identifier?
When should the volatile modifier be used?
Describe the order of precedence with regards to operators in C.
What is the c language function prototype?
Is main a keyword in c?
Are pointers integer?
What does %c mean in c?
What is a example of a variable?
Write a program to check palindrome number in c programming?
what will be maximum number of comparisons when number of elements are given?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
How can you tell whether a program was compiled using c versus c++?