C语言09

本文介绍了C/C++中常量(const)的使用及其重要性,typedef用于类型别名的定义,以及宏(preprocessor)的预处理功能,包括有参数宏和简单的替换。通过实例展示了这些概念在实际编程中的应用。
摘要由CSDN通过智能技术生成

const

#include<stdio.h>

//const 是一个关键字  定义常量
//const 修饰的变量不可修改
//const 修饰的变量必须初始化


int main()
{
	const int a = 200;

	const int* p1 = &a;
	int* const p2 = &a;
	int const* const p3 = &a;

	//const 在*号的左面 p能改 *p不能改
	//const 在*号的右面 p不能改 *p能改
	//const 在*号的两面 p不能改 *p不能改


	return 0;
}

typedef

#include<stdio.h>

//给已经存在的类型起一个别名
//typedef + 类型 + 别名;
typedef unsigned int UINT;
typedef int* AA;
typedef int ARR[5]; //长度为5的整型数组起一个别名

//起别名时也要符合定义变量的规则
int main()
{
	UINT a = 127;

	UINT b = 128;

	printf("%d %d\n",a,b);

	int* p1, p2;

	AA p3, p4;

	ARR arr1;


	return 0;
}

#include<stdio.h>

//预处理
//编译
//汇编
//链接

//单纯的替换
//#define + 宏的名字 + 替换的内容

#define AA printf("hello")
#define PINT int*
typedef int BOOL;
#define TURE 1
#define FALSE 0

int main()
{
	AA;

	PINT a, b;

	return 0;
}

有参数的宏

#include<stdio.h>

#define ADD(a,b) a + b

#define MUL(a,b) (a)*(b)

#define lenth(a) sizeof(a)/sizeof(a[0])//求数组的长度

int main()
{
	int arr[10];
	char arr1[7];

	printf("%d\n",ADD(1, 2));

	printf("%d\n",MUL(1 + 1, 2 + 2));

	printf("%d\n",lenth(arr));

	printf("%d\n", lenth(arr1));

	

	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值