/*C語言 指標陣列*/
#include<stdio.h>
#include<stdlib.h>

int main(void)
{
    int i;
    char* ptr[3] = { "ABC", "DEFGH", "IJKL MNO" };

    for (i = 0; i < 3; i++)
    {
        printf("%s \n", ptr[i]);
        printf("位址為:%p \n", *ptr[i]);
    }
    system("pause");
    return 0;
}

結果為:

 

image

arrow
arrow
    創作者介紹
    創作者 愛學習 的頭像
    愛學習

    愛學習

    愛學習 發表在 痞客邦 留言(0) 人氣()