博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何创建指定大小的数组/字符串
阅读量:6615 次
发布时间:2019-06-24

本文共 279 字,大约阅读时间需要 1 分钟。

#include 
#include
#include
using namespace std;int main(){ vector
a(10); int b[10]; int *c = new int[10]; char str2[10]; char *str3 = new char[10]; }

转载于:https://www.cnblogs.com/muyangshaonian/p/9650547.html

你可能感兴趣的文章