c语言用宏定义常量_使用宏定义常量以在C的数组声明中使用
c語言用宏定義常量
As we know that, while declaring an array we need to pass maximum number of elements, for example, if you want to declare an array for 10 elements. You need to pass 10 while declaring. Example: int arr[10];
眾所周知,在聲明數(shù)組時,例如,如果要聲明一個包含10個元素的數(shù)組,則需要傳遞最大數(shù)量的元素。 您需要在聲明時通過10 。 示例: int arr [10];
But, there is a good way, to define a constant by using Macro for it, so that we can easily edit, when required.
但是,有一種很好的方法,可以使用宏為其定義常量,以便我們可以在需要時輕松進(jìn)行編輯。
Macro definition:
宏定義:
#define MAX 10Example:
例:
#include <stdio.h>#define MAX 10int main() {int arr1[MAX];int arr2[MAX];printf("Maximum elements of the array: %d\n",MAX);printf("Size of arr1: %d\n",sizeof(arr1));printf("Size of arr2: %d\n",sizeof(arr2));printf("Total elements of arr1: %d\n",sizeof(arr1)/sizeof(int));printf("Total elements of arr2: %d\n",sizeof(arr2)/sizeof(int));return 0; }Output
輸出量
Maximum elements of the array: 10Size of arr1: 40Size of arr2: 40Total elements of arr1: 10Total elements of arr2: 10翻譯自: https://www.includehelp.com/c-programs/define-a-constant-using-macro-to-use-in-array-declarations-in-c.aspx
c語言用宏定義常量
總結(jié)
以上是生活随笔為你收集整理的c语言用宏定义常量_使用宏定义常量以在C的数组声明中使用的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Spring 事务失效的 8 种场景!
- 下一篇: 预处理阶乘和阶乘逆元_计算数字的阶乘|