15 lines
240 B
C++
15 lines
240 B
C++
/* 数组.cpp */
|
|
#include <cstring>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
|
|
char *sPtr;
|
|
const char *s = "hello";
|
|
sPtr = new char[strlen(s) + 1];
|
|
strncpy(sPtr, s, strlen(s));
|
|
std::cout << sPtr << std::endl;
|
|
delete sPtr;
|
|
return 0;
|
|
}
|