A question about strcat

i have a sample code like this:

char *pFilePath;

if(...) {
pFilePath = "../config/error.txt"
}

i want to inform user with a string like "INFO : Error file location is ../config/error.txt".

Now, how can i do this in the shortest way?

Thanks
printf("INFO : Error file location is %s", pFilePath);

or

cout << "INFO : Error file location is " << pFilePath;

Additionally, you should declare pFilePath as

const char * pFilePath;

or even better

string filePath;
Topic archived. No new replies allowed.