2022.2.28 define的运用

#define定义的标识常量

#include <stdio.h>
#define max 10
int main()
{
int arr[max]={0};
printf("%d\n",max);
return 0;
}

posted @ 2022-02-28 17:11  抢你红包  阅读(24)  评论(0)    收藏  举报