CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: vanalex

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    998

    Re: question about a struct pointer parameter

    No wrong again!

    RIGHT CODE


    (n->d).day

    sorry...:)
  2. Replies
    5
    Views
    998

    Re: question about a struct pointer parameter

    Thank you very much for your reply Lindley, but i found what caused the whole problem. The . operator precedes the -> operator in expressions so i had to write my code like this:


    (n->).d.day
    ...
  3. Replies
    5
    Views
    998

    question about a struct pointer parameter

    Hello everybody!
    Recently while i was experimenting with some code written in c++ i noticed something that confused me a bit. In that code i had to deal with 2 structs :

    struct date
    {
    ...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured