摘要:
#include<iostream> #include<iomanip> #include<string> using namespace std; class Car { public: Car(string maker, string model, int year) { this->maker 阅读全文
摘要:
#include<stdio.h> const int N = 3; int main(){ int a[N] = {1, 2, 3}; int i; for(i = 0; i < N; i++) printf("%d: %d\n", &a[i], a[i]); printf("通过地址间接访问数组 阅读全文