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