Function pointers
kumar11 <[email protected]>
| Newsgroups | org.kernel.vger.linux-c-programming |
|---|---|
| Message-ID | <[email protected]> |
Could you please explain the meaning of below declaration statement.
char (*pa())[4];
Please find the entire code below.
char (*pa())[4];
void main(){
char(*p)[4]=pa();
printf("%d",**p);
}
char (*pa())[4]{
static char arr[]={'\11','\12','\13','\14'};
return &arr;
}
--
View this message in context: http://old.nabble.com/Function-pointers-tp27253432p27253432.html
Sent from the linux-c-programming mailing list archive at Nabble.com.