G
G
German2019-04-04 21:43:31
C++ / C#
German, 2019-04-04 21:43:31

Convert char to const char*?

There is a string The function accepts const char* , I need to pass the first character of this string to it. The option with message[0] returns char , I'm trying to do this: But the program crashes, how can I fix it without writing extra lines of code, directly as a parameter, m?
string message = "Hello!";


(const char*)message[0];

Answer the question

In order to leave comments, you need to log in

2 answer(s)
J
jcmvbkbc, 2019-04-04
@mrjbom

There is a line
string message = "Hello!";
The function accepts const char*, I need to pass the first character of this string to it.

void f(const char *);

string message = "Hello!";
string message1(1, message[0]);
f(message1.c_str());

V
vanyamba-electronics, 2019-04-04
@vanyamba-electronics

The string class usually has a c_str() method that returns a pointer to a C string.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question