ผมอยากจะแปลงstring
ไปchar
อาร์เรย์ char*
แต่ไม่ ฉันรู้วิธีแปลงสตริงเป็นchar*
(โดยใช้malloc
หรือวิธีที่ฉันโพสต์ไว้ในโค้ดของฉัน) - แต่นั่นไม่ใช่สิ่งที่ฉันต้องการ ฉันแค่ต้องการแปลงstring
เป็นchar[size]
อาร์เรย์ เป็นไปได้ไหม?
#include <iostream>
#include <string>
#include <stdio.h>
using namespace std;
int main()
{
// char to string
char tab[4];
tab[0] = 'c';
tab[1] = 'a';
tab[2] = 't';
tab[3] = '\0';
string tmp(tab);
cout << tmp << "\n";
// string to char* - but thats not what I want
char *c = const_cast<char*>(tmp.c_str());
cout << c << "\n";
//string to char
char tab2[1024];
// ?
return 0;
}