1) How will you express the following expressions? (Express in words..)
1. float (**a(void))[6];
2. short (**b(void))(int );
3. long *(*(*c(void))(i nt))[6];
4. char *(**d)(void);
5. double *(*(*(*e)(void) )[5])(void);
Thanks in advance.
1. float (**a(void))[6];
2. short (**b(void))(int );
3. long *(*(*c(void))(i nt))[6];
4. char *(**d)(void);
5. double *(*(*(*e)(void) )[5])(void);
Thanks in advance.
Comment