7.2指针定义和使用

# 7.2指针定义和使用

#include 
using namespace std;

int main7_3_1()
{
	//定义指针:数据类型 *指针变量
	//int a = 10;
	//int *p;
	//p = &a;
	//cout << p << endl;
	//cout << *p << endl;

	//通过解引用方式来找到指针指向的内容


	system("pause");
	return 0;
}

# 6.7函数分文件编写

#include 
using namespace std;
#include "swap.h"
//函数分文件编写

/*创建.h的头文件
	创建.cpp的源文件
	在头文件中写函数声明
	在源文件中写函数定义
*/
int main6_7()
{
	int a = 10;
	int b = 20;
	swap(a, b);
	system("pause");
	return 0;
}

你可能感兴趣的:(蓝桥杯,c++,算法)