The example program of C on point
来源:程序员人生 发布时间:2014-11-18 08:48:47 阅读次数:1757次
程序1:
#include<stdio.h>
#define N_VALUES 5
int main( void )
{
float values[N_VALUES];
float *vp;
for( vp = &values[0]; vp < &values[N_VALUES]; )
*vp++ = 0;
for( vp = &values[N_VALUES]; vp > &values[0]; )
*--vp =0;
for( vp = &values[N_VALUES]; vp >= &values[0]; vp-- )
*vp = 0;
//不建议使用 数组下标越界
//标准允许指向数组元素的指针与最后1个元素内存位置的指针进行比较
//不允许第1个元素和之前内存位置的指针比较
return 0;
}
程序2:
/*
**Programe6.1
**计算1个字符串的函数
*/
#include<stdio.h>
int strlen(char *string)
{
int lenth=0;
while(*string++!='