๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
Algorithm ๐Ÿง‘๐Ÿป‍๐Ÿ’ป/Note

[C++, ์œ ์šฉํ•œ ๋ฌธ๋ฒ•] String to CharArray

by ์•ˆ์ฃผํ˜• 2021. 11. 7.

String to CharAttay

#include <iostream>
using namespace std;

int main(){
    string str1="str";
    char c1[11];
    strcpy(c1,str1.c_str()); 
}

๋Œ“๊ธ€