Code:
I have class C{
...

C& operator<<(C& os, const char* str) {
...
}

void display() {
Is there anyway I can call operator<< in here?

}