#include <iostream> using namespace std; int main(){ int *a = new int[5]; int *b = new int[5](); int *p = a; int *q = a + 5; int *r = b; ...
確定! 回上一頁