Pointers mystry..can u help me?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mzca
    New Member
    • Oct 2007
    • 2

    Pointers mystry..can u help me?

    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.
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by mzca
    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.
    Google for the 'cdecl' utility; it can do exactly what you want.

    kind regards,

    Jos

    Comment

    • mzca
      New Member
      • Oct 2007
      • 2

      #3
      Originally posted by JosAH
      Google for the 'cdecl' utility; it can do exactly what you want.

      kind regards,

      Jos
      Hey Jos

      Could you please tell me more specifically about it?

      Comment

      • Banfa
        Recognized Expert Expert
        • Feb 2006
        • 9067

        #4
        Originally posted by mzca
        Could you please tell me more specifically about it?
        The first result returned by google explains in great detail how the program cdecl works.

        What part of it do you not understand?

        Comment

        • JosAH
          Recognized Expert MVP
          • Mar 2007
          • 11453

          #5
          Originally posted by Banfa
          The first result returned by google explains in great detail how the program cdecl works.

          What part of it do you not understand?
          I'm afraid it's the part with all those letters in it ;-)

          kind regards,

          Jos

          Comment

          Working...