Is there any way to concatenate char pointers with the + operator in c?
I know that I can concatenate strings with strcopy() and strcat()
How to concat two char * in C?
Concatenate two char* strings in a C program
But how can I concatenate char pointers with the + operator
in c?(Maybe operator overloading works but I don't know how to overload + operator to concatenate char pointers)