溫馨提示×

c語言如何取數(shù)組的最后一個數(shù)

小億
391
2024-03-01 16:14:16
欄目: 編程語言

在C語言中,可以通過數(shù)組的索引來訪問數(shù)組的最后一個元素。假設(shè)數(shù)組名為arr,數(shù)組長度為n,則可以使用arr[n-1]來訪問最后一個元素。另外,也可以使用指針的方式來訪問數(shù)組的最后一個元素,如下所示:

#include <stdio.h>

int main() {
    int arr[] = {1, 2, 3, 4, 5};
    int n = sizeof(arr) / sizeof(arr[0]);

    // 訪問最后一個元素
    int lastElement = arr[n-1];
    printf("The last element of the array is: %d\n", lastElement);

    // 使用指針的方式訪問最后一個元素
    int *ptr = &arr[n-1];
    printf("The last element of the array (using pointer) is: %d\n", *ptr);

    return 0;
}

上述代碼中,首先計算數(shù)組arr的長度,然后通過arr[n-1]和指針的方式訪問數(shù)組的最后一個元素,并將其打印出來。

0