ptr_math.c

来自「c21Examples.rar」· C语言 代码 · 共 37 行

C
37
字号
/* Demonstrates using pointer arithmetic to access */
/* array elements with pointer notation. */

#include <stdio.h>
#define MAX 10

/* Declare and initialize an integer array. */

int i_array[MAX] = { 0,1,2,3,4,5,6,7,8,9 };

/* Declare a pointer to int and an int variable. */

int *i_ptr, count;

/* Declare and initialize a float array. */

float f_array[MAX] = { .0, .1, .2, .3, .4, .5, .6, .7, .8, .9 };

/* Declare a pointer to float. */

float *f_ptr;

int main( void )
{
    /* Initialize the pointers. */

    i_ptr = i_array;
    f_ptr = f_array;

    /* Print the array elements. */

    for (count = 0; count < MAX; count++)
        printf("%d\t%f\n", *i_ptr++, *f_ptr++);

    return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?