码迷,mamicode.com
首页 > 编程语言 > 详细

【c语言】使用NULL和指针来寻找数组中是否存在指定的数字

时间:2014-12-21 23:21:20      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<math.h>
void main(){
    int a[5],i,*p;
    int x=10;
    srand(time());
    printf("input data to array:\n");
    for(i=0;i<5;i++){
        a[i]=rand()%100;
        printf("%-4d",a[i]);
    }
        printf("\n");
    p=NULL;
    for(i=0;i<5;i++){
        if(a[i]==x){
            p=&a[i];
        }
    }
    if(p!=NULL){
        printf("the %d address is %x\n",x,p);
    }
    else{
            printf("the %d not in array\n",x);
    }
    printf("\n");

}

备注:指针如果不让它等于NULL,它永远都会指向一个地址。所以先让它为NULL,如果找到了就输出要找的数的地址,找不到,就是NULL,返还else里的内容。

【c语言】使用NULL和指针来寻找数组中是否存在指定的数字

标签:

原文地址:http://www.cnblogs.com/zhizhuniuniu/p/4177138.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!