摘要:
1. int c=0; &c: 指向c的指针,在这里是就是c的地址 cout<< *&c <<endl; // &c: 指向c的指针,在这里是就是c的地址。此句等价于 cout<< c <<endl; 2. 指针即地址,如果变量的内容(值)是指针,则称指针变量,指针不等于指针变量 3. int *p 阅读全文
摘要:
#include "stdafx.h" #include<stdlib.h>#include<iostream>using namespace std;namespace Com { int maxOrmin(int *arr, int length, bool isMax) { int temp 阅读全文
摘要:
#include <iostream>#include <stdlib.h>using namespace std;namespace myNum //填写命名空间的关键字{ int x = 105;}int main(){ bool isFlag; isFlag = false; if(myNum 阅读全文