C Programming - Typedef - Discussion
Discussion Forum : Typedef - General Questions (Q.No. 3)
3.
What is x in the following program?
#include<stdio.h>
int main()
{
typedef char (*(*arrfptr[3])())[10];
arrfptr x;
return 0;
}
Discussion:
14 comments Page 2 of 2.
Prasad said:
1 decade ago
I do not understand please explain it.
Mtb said:
1 decade ago
If one can give a more detailed description for this, I would appreciate it.
Rajneesh kumar said:
1 decade ago
Its pointer of pointer concept so which gives value.
So arrays of three function pointer.
So arrays of three function pointer.
Murari jaiswal said:
1 decade ago
*(*
means pointer to pointer which gives value
so arrays of three function pointer
means pointer to pointer which gives value
so arrays of three function pointer
Post your comments here:
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers