That happens because operator<<() is overloaded for the very particular case of char*, which is the data type of &teste.test. This special overload will assume there are many characters in line that need displaying and won't stop until a null char (value zero) is encountered. Since you don't really have a chain of characters, the use of this particular overload is incorrect, but the compiler has no way of knowing this.
Therefore what you need to do is tell the compiler you don't that special overload by typecasting to void*:
webJose, amazing!!
I tested with chain of characters and works like you said...and also used typecasting to void...and its true!!!
i will get more about overload <<...
thank you !!!!