What does the *& mean ?Code:int DialogPassword( char*& passwd );
Thanks,
Ken
This is a discussion on syntax ? within the C Programming forums, part of the General Programming Boards category; Code: int DialogPassword( char*& passwd ); What does the *& mean ? Thanks, Ken...
What does the *& mean ?Code:int DialogPassword( char*& passwd );
Thanks,
Ken
If you want to look into it more, read http://publib.boulder.ibm.com/infoce...ef/cplr233.htm
Ah, thats why my c compiler didn't like it...
*& in c is invalid.
Thanks.