test123

来源:互联网 发布:列克星敦战巡数据 编辑:程序博客网 时间:2024/06/11 01:59
123
#include <stdio.h>#include <iostream>using namespace std;int main() {    int arr[] = {1, 2, 3};    int *p = new int[19];    cout << arr;    cout << p;}


0 0