User profile: masterinex

User info
User name:masterinex
History
Joined:
Number of posts:181
Latest posts:

Socket Programming recv function
Hello, anyone familiar with Socket Programming how come I cannot do this on the client side ? t...

how to prevent memory leek
how would you prevent memory leek in this situation : [code] int * ReturnPointer2() { int *...

expression must be an lvalue or function designator
I am just curious to as why I cannot define a reference this way: SOCKET & hs = FacadeSocket::Con.g...

expression must be an lvalue or function designator
SOCKET & hs is a reference to a SOCKET object. i have also tried it this way: SOCKET & hs = Fac...

what is meant by a pointer goes out of scope ?
what is meant by a pointer goes out of scope ? what if i store that pointer as field within ...