how doing cout << ptr in string tokenizer is giving the value in string it should give the address of the ptr …(as taught in the string tokenizer 1 video ) …
String____tokenizer
hey @3lokesharora, ptr is a character pointer and when you use character pointer with cout, it will always gives the value instead of address. It is due to operator overloading of <<.