C++ ??

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
C++ Guy

C++ ??

Post by C++ Guy »

is it possible to write your own functions then overload them like cout<<" "; ??

or simply, how woudl you write afunction called cout<< ?

classes?
pskyboy

Re:C++ ??

Post by pskyboy »

Yes its possible to do that

Basically if you want to do it as a function you would do for instance

int operator<<(char* pCharToOutput)
Post Reply