C++ string
approximate:
Code:
cpp class string { private: struct ChatT { ... ... blablabla; }; ChatT *s; int __length; //<---- private mamber of class string public: int length() { return this->__length; } } ;
cpp class string { private: struct ChatT { ... ... blablabla; }; ChatT *s; int __length; //<---- private mamber of class string public: int length() { return this->__length; } } ;
char *function_names[] = { "function_A()", "function_B()", "function_C()" };
i=0; while( i<3 ) { /*call*/ function_names[
Leave a comment: